2020-11-29 02:05:45 -05:00
|
|
|
name: Check code formatting
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2022-06-08 12:32:17 -04:00
|
|
|
runs-on: ubuntu-22.04
|
2020-11-29 02:05:45 -05:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-python@v1
|
|
|
|
- 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
|