Skip to content

Commit

Permalink
Avoid double-compilation of our packages in CI (#2388)
Browse files Browse the repository at this point in the history
  • Loading branch information
marc0246 authored Oct 31, 2023
1 parent 1e91287 commit 0978b29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
# run: pip install ninja
- uses: actions/checkout@v3
- name: Build tests
run: cargo build --verbose
run: cargo build --tests --verbose
- name: Run tests
run: cargo test --verbose
- name: Build examples
Expand All @@ -32,7 +32,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build tests
run: cargo build --verbose
run: cargo build --tests --verbose
- name: Run tests
run: cargo test --verbose
- name: Build examples
Expand All @@ -44,7 +44,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build tests
run: cargo build --verbose
run: cargo build --tests --verbose
- name: Run tests
run: cargo test --verbose
- name: Build examples
Expand Down

0 comments on commit 0978b29

Please # to comment.