diff options
-rw-r--r-- | .github/workflows/push.yml | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index f8004d9ed..b4c8b61b8 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -10,6 +10,24 @@ env: jobs: # +# Format +# + + fmt: + runs-on: ubuntu-latest + steps: + + - uses: actions/checkout@v2 + + - uses: actions/setup-python@v2 + with: + python-version: 3.8 + + - run: python -m pip install black + + - run: python -m black --check python + +# # GPL # @@ -19,8 +37,7 @@ jobs: - uses: actions/checkout@v2 - - run: | - TASK=buster+mcode ./dist/ci-run.sh -c --gpl --no-synth + - run: TASK=buster+mcode ./dist/ci-run.sh -c --gpl --no-synth # # GNU/Linux |