diff options
Diffstat (limited to '.github')
-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 |