Skip to content

Commit

Permalink
ci(actions): Add better step names for build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Holzhaus committed Dec 30, 2024
1 parent d484dd5 commit f312868
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ jobs:
uses: actions/checkout@v4
- name: Print Rust version
run: rustc -vV
- name: Run tests
- name: Build Package
run: cargo publish --dry-run --locked --no-default-features --features "${CRATE_FEATURES}"
- name: Run Tests
run: cargo test --locked --no-default-features --features "${CRATE_FEATURES}"
- name: Run bench
- name: Run Benchmark
run: cargo bench --locked --no-default-features --features "${CRATE_FEATURES}"
- name: Run doc
run: cargo doc --locked --no-default-features --features "${CRATE_FEATURES}"
- name: Generate Documentation
run: cargo doc --no-deps --locked --no-default-features --features "${CRATE_FEATURES}"

0 comments on commit f312868

Please sign in to comment.