We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19ee58a commit 411f298Copy full SHA for 411f298
.github/workflows/ci.yaml
@@ -7,8 +7,12 @@ on:
7
- libc-0.2
8
9
env:
10
+ CARGO_TERM_COLOR: always
11
CARGO_TERM_VERBOSE: true
12
LIBC_CI: 1
13
+ RUSTDOCFLAGS: -Dwarnings
14
+ RUSTFLAGS: -Dwarnings
15
+ RUST_BACKTRACE: full
16
17
defaults:
18
run:
@@ -42,6 +46,12 @@ jobs:
42
46
TOOLCHAIN: ${{ matrix.toolchain }}
43
47
steps:
44
48
- uses: actions/checkout@v4
49
+ # Remove `-Dwarnings` at the MSRV since lints may be different or buffier
50
+ - name: Update RUSTFLAGS
51
+ run: |
52
+ set -eux
53
+ [ "${{ matrix.toolchain }}" = "1.63.0" ] && echo 'RUSTFLAGS=' >> "$GITHUB_ENV" || true
54
+
45
55
- name: Setup Rust toolchain
56
run: ./ci/install-rust.sh
57
0 commit comments