2020-11-29 02:05:45 -05:00
|
|
|
name: Check code formatting
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
2022-12-13 13:57:34 -05:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-11-29 02:05:45 -05:00
|
|
|
jobs:
|
|
|
|
build:
|
2022-06-08 12:32:17 -04:00
|
|
|
runs-on: ubuntu-22.04
|
2020-11-29 02:05:45 -05:00
|
|
|
steps:
|
2022-11-10 10:50:38 -05:00
|
|
|
- uses: actions/checkout@v3
|
2022-11-10 21:27:28 -05:00
|
|
|
- uses: actions/setup-python@v4
|
2020-11-29 02:05:45 -05: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
|