diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c21d5716..a1ce468d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,9 +16,6 @@ on: - auto_merge_enabled - edited - merge_group: - types: [checks_requested] - jobs: commitlint: runs-on: ubuntu-latest @@ -59,18 +56,6 @@ jobs: - uses: Swatinem/rust-cache@v2 - run: scripts/clippy.sh - run-python-tests: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v2 - with: - python-version: '3.9' - - run: | - python -m pip install --upgrade pip - pip install pytest - - run: pytest scripts/merge_paths_test.py - run-tests: runs-on: ubuntu-latest steps: @@ -96,19 +81,3 @@ jobs: cargo-udeps-*/cargo-udeps udeps env: RUSTUP_TOOLCHAIN: nightly-2024-01-12 - - - all-tests: - runs-on: ubuntu-latest - needs: - - clippy - - commitlint - - format - - run-python-tests - - run-tests - - udeps - steps: - - name: Decide whether all the needed jobs succeeded or failed - uses: re-actors/alls-green@v1.2.2 - with: - jobs: ${{ toJSON(needs) }}