diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b9263a3..9d9086d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,7 @@ jobs: build: name: Build runs-on: ubuntu-latest + needs: [lints, docs] env: RUSTFLAGS: "-D warnings" strategy: @@ -34,6 +35,7 @@ jobs: test: name: Test Suite runs-on: ubuntu-latest + needs: [lints, docs] env: RUSTFLAGS: "-D warnings" steps: @@ -51,6 +53,7 @@ jobs: msrv: name: Minimum Supported Rust Version runs-on: ubuntu-latest + needs: [lints, docs] env: RUSTFLAGS: "-D warnings" steps: @@ -70,6 +73,7 @@ jobs: semver: name: Semantic Versioning runs-on: ubuntu-latest + needs: [lints, docs] steps: - name: Checkout sources uses: actions/checkout@v3 @@ -112,6 +116,7 @@ jobs: leaks: name: Memory leaks runs-on: ubuntu-latest + needs: [lints, docs] steps: - name: Checkout sources uses: actions/checkout@v3