From 9cd13d0f265f11c64bbfc4df3acbfdc4e7933e65 Mon Sep 17 00:00:00 2001 From: "H. Shay" Date: Tue, 13 Jun 2023 15:39:53 -0700 Subject: temp move `check_schema_delta` behind lint gating because this pr will always fail that --- .github/workflows/tests.yml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cf1899b580..d732826ca6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -45,16 +45,6 @@ jobs: - run: poetry run scripts-dev/generate_sample_config.sh --check - run: poetry run scripts-dev/config-lint.sh - check-schema-delta: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 - with: - python-version: "3.x" - - run: "pip install 'click==8.1.1' 'GitPython>=3.1.20'" - - run: scripts-dev/check_schema_delta.py --force-colors - check-lockfile: runs-on: ubuntu-latest steps: @@ -221,7 +211,6 @@ jobs: - lint-newsfile - lint-pydantic - check-sampleconfig - - check-schema-delta - check-lockfile - lint-clippy - lint-rustfmt @@ -609,6 +598,16 @@ jobs: - run: cargo bench --no-run + check-schema-delta: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: "3.x" + - run: "pip install 'click==8.1.1' 'GitPython>=3.1.20'" + - run: scripts-dev/check_schema_delta.py --force-colors + # a job which marks all the other jobs as complete, thus allowing PRs to be merged. tests-done: if: ${{ always() }} -- cgit 1.5.1