Skip to content

Commit

Permalink
exclude metrics-benchmark from test commands
Browse files Browse the repository at this point in the history
  • Loading branch information
tobz committed Nov 25, 2023
1 parent 7da5423 commit b3efe71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Install Rust ${{ matrix.rust_version }}
run: rustup default ${{ matrix.rust_version }}
- name: Run Tests
run: cargo test --all-features --workspace --exclude=metrics-observer
run: cargo test --all-features --workspace --exclude=metrics-observer --exclude=metrics-benchmark
docs:
runs-on: ubuntu-latest
env:
Expand All @@ -50,7 +50,7 @@ jobs:
- name: Install Rust Nightly
run: rustup default nightly
- name: Check Docs
run: cargo doc --all-features --workspace --exclude=metrics-observer --no-deps
run: cargo doc --all-features --workspace --exclude=metrics-observer --exclude=metrics-benchmark --no-deps
bench:
name: Bench
runs-on: ubuntu-latest
Expand All @@ -61,4 +61,4 @@ jobs:
- name: Install Rust Stable
run: rustup default stable
- name: Run Benchmarks
run: cargo bench --all-features --workspace --exclude=metrics-observer
run: cargo bench --all-features --workspace --exclude=metrics-observer --exclude=metrics-benchmark

0 comments on commit b3efe71

Please sign in to comment.