2020-11-29 07:05:45 +00:00
|
|
|
name: Check code formatting
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
2022-12-13 18:57:34 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-11-29 07:05:45 +00:00
|
|
|
jobs:
|
2023-03-08 02:15:40 +00:00
|
|
|
code-formatting:
|
2022-06-08 17:32:17 +01:00
|
|
|
runs-on: ubuntu-22.04
|
2020-11-29 07:05:45 +00:00
|
|
|
steps:
|
2023-09-04 20:42:14 +01:00
|
|
|
- uses: actions/checkout@v4
|
2022-11-11 02:27:28 +00:00
|
|
|
- uses: actions/setup-python@v4
|
2020-11-29 07:05:45 +00:00
|
|
|
- name: Install packages
|
2023-10-21 07:40:27 +01:00
|
|
|
run: source tools/ci.sh && ci_c_code_formatting_setup
|
2020-11-29 07:05:45 +00:00
|
|
|
- name: Run code formatting
|
2023-10-21 07:40:27 +01:00
|
|
|
run: source tools/ci.sh && ci_c_code_formatting_run
|
2020-11-29 07:05:45 +00:00
|
|
|
- name: Check code formatting
|
|
|
|
run: git diff --exit-code
|
2023-03-08 02:15:40 +00:00
|
|
|
|
|
|
|
code-spelling:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-04 20:42:14 +01:00
|
|
|
- uses: actions/checkout@v4
|
2023-03-08 02:15:40 +00:00
|
|
|
- uses: actions/setup-python@v4
|
|
|
|
- name: Install packages
|
|
|
|
run: source tools/ci.sh && ci_code_spell_setup
|
|
|
|
- name: Run spell checker
|
|
|
|
run: source tools/ci.sh && ci_code_spell_run
|