Skip to content

Commit

Permalink
Test release builds on CI as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
nnethercote committed Nov 19, 2021
1 parent 17be994 commit ed200bf
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,18 @@ jobs:
rustup component add clippy
rustup component add rustfmt
- name: Build
- name: Build (debug)
run: cargo build --verbose

- name: Run tests
- name: Build (release)
run: cargo build --verbose --release

- name: Run tests (debug)
run: cargo test --verbose

- name: Run tests (release)
run: cargo test --verbose --release

- name: Check formatting
run: cargo fmt -- --check

Expand Down

0 comments on commit ed200bf

Please sign in to comment.