diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3aef604..22ab910 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: - name: Build run: cross build --all-features --release --target=${{ matrix.target }} - build-all: + build-examples: name: Build Examples runs-on: ubuntu-latest needs: [lints, docs] @@ -46,7 +46,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Build - run: cargo build --all-features --all-targets --release + run: cargo build --examples --all-features --release test: name: Test Suite @@ -215,7 +215,7 @@ jobs: runs-on: ubuntu-latest environment: production if: github.event_name == 'release' - needs: [build, build-all, test, msrv, lints, docs, leaks, semver, min-versions, min-versions-msrv] + needs: [build, build-examples, test, msrv, lints, docs, leaks, semver, min-versions, min-versions-msrv] steps: - name: Checkout sources uses: actions/checkout@v4