Skip to content

Commit

Permalink
apply workaround to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruben2424 committed Jun 16, 2023
1 parent aa330bc commit df342a3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,12 @@ jobs:
toolchain: ${{ steps.msrv.outputs.version }}

- name: Check
run: cargo check --features full
# Workaround for rust-lang/cargo#7732
run: |
if ! rustfmt --check --edition 2018 $(git ls-files '*.rs'); then
printf "Please run \`rustfmt --edition 2018 \$(git ls-files '*.rs')\` to fix rustfmt errors.\nSee CONTRIBUTING.md for more details.\n" >&2
exit 1
fi
miri:
name: Test with Miri
Expand Down

0 comments on commit df342a3

Please sign in to comment.