diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2022-09-02 16:09:32 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2022-09-02 16:09:32 +0100 |
commit | c34960fb1031e97e302f647c5e41ed2e78668198 (patch) | |
tree | f5290d20f4946035b6b974f30528ed027c871755 | |
parent | Re-comment lint (diff) | |
download | synapse-babolivier/sonar_coverage.tar.xz |
Fix tests workflow github/babolivier/sonar_coverage babolivier/sonar_coverage
-rw-r--r-- | .github/workflows/tests.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e52260d871..b0945ad002 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -65,13 +65,13 @@ jobs: # extras: "all" # - run: poetry run scripts-dev/check_pydantic_models.py # -# # Dummy step to gate other tests on without repeating the whole list -# linting-done: -# if: ${{ !cancelled() }} # Run this even if prior jobs were skipped + # Dummy step to gate other tests on without repeating the whole list + linting-done: + if: ${{ !cancelled() }} # Run this even if prior jobs were skipped # needs: [lint, lint-crlf, lint-newsfile, lint-pydantic, check-sampleconfig, check-schema-delta] -# runs-on: ubuntu-latest -# steps: -# - run: "true" + runs-on: ubuntu-latest + steps: + - run: "true" trial: if: ${{ !cancelled() && !failure() }} # Allow previous steps to be skipped, but not fail |