Skip to content

Commit

Permalink
Actually pass cargo flags instead of literal $CARGO_FLAGS (#143)
Browse files Browse the repository at this point in the history
As it turns out, this actually gets interpreted as a test filter and so
CI doesn't end up running any tests.
  • Loading branch information
steamroller-airmash authored Feb 26, 2022
1 parent d73807b commit 3f375a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: test
args: --color always $CARGO_FLAGS
args: --color always ${{ env.CARGO_FLAGS }}

format:
name: check-fmt
Expand Down

0 comments on commit 3f375a1

Please sign in to comment.