Skip to content

Commit

Permalink
workflow: add release build in Rust workflow
Browse files Browse the repository at this point in the history
Closure recursive declaration issue was only happening in release build
Could have been detected before if release build was done here

Signed-off-by: Nicolas Buffon <nicolas.buffon@orange.com>
  • Loading branch information
nbuffon committed Aug 7, 2023
1 parent d8a64a1 commit 93c9e4b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build source
- name: Build
run: |
cd rust
cargo build --verbose
- name: Release build
run: |
cd rust
cargo build --release --verbose
- name: Run tests
run: |
cd rust
Expand Down

0 comments on commit 93c9e4b

Please sign in to comment.