diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/file_format.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/file_format.yml b/.github/workflows/file_format.yml new file mode 100644 index 000000000..a41c61203 --- /dev/null +++ b/.github/workflows/file_format.yml @@ -0,0 +1,13 @@ +name: File format check + +on: [push, pull_request] + +jobs: + format: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: '3.x' + - run: python3 ./run_format_tests.py |
