diff options
| author | Jon Turney <jon.turney@dronecode.org.uk> | 2020-01-28 19:58:04 +0000 |
|---|---|---|
| committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-06-11 15:28:07 +0200 |
| commit | 636bf915861b94a3353a5b9a770e235f0a3784a2 (patch) | |
| tree | 1ce0894096ab400b7451fb624825736b986c9bef /.github/workflows | |
| parent | 25f2d8826e7c99d3e022e5774ff4530c2af5b0ba (diff) | |
| download | meson-636bf915861b94a3353a5b9a770e235f0a3784a2.tar.gz | |
CI: Split out file format test as a separate GitHub workflow
Split out checking of file format as a separate GitHub workflow, rather
than running it as part of the project tests for every platform and
toolchain combination in CI, so that this test is not effected by the
changed paths constraints which are applied to the project tests.
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 |
