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:
|
|
|
|
build:
|
2022-06-08 17:32:17 +01:00
|
|
|
runs-on: ubuntu-22.04
|
2020-11-29 07:05:45 +00:00
|
|
|
steps:
|
2022-11-10 15:50:38 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-11-11 02:27:28 +00:00
|
|
|
- uses: actions/setup-python@v4
|
2020-11-29 07:05:45 +00:00
|
|
|
- name: Install packages
|
|
|
|
run: source tools/ci.sh && ci_code_formatting_setup
|
|
|
|
- name: Run code formatting
|
|
|
|
run: source tools/ci.sh && ci_code_formatting_run
|
|
|
|
- name: Check code formatting
|
|
|
|
run: git diff --exit-code
|