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 d5278fd commit 7a7ea68Copy full SHA for 7a7ea68
.github/workflows/ci.yaml
@@ -6,8 +6,12 @@ on:
6
types: [opened, synchronize, reopened]
7
8
env:
9
+ CARGO_TERM_COLOR: always
10
CARGO_TERM_VERBOSE: true
11
LIBC_CI: 1
12
+ RUSTDOCFLAGS: -Dwarnings
13
+ RUSTFLAGS: -Dwarnings
14
+ RUST_BACKTRACE: full
15
16
defaults:
17
run:
@@ -41,6 +45,12 @@ jobs:
41
45
TOOLCHAIN: ${{ matrix.toolchain }}
42
46
steps:
43
47
- uses: actions/checkout@v4
48
+ # Remove `-Dwarnings` at the MSRV since lints may be different or buffier
49
+ - name: Update RUSTFLAGS
50
+ run: >
51
+ set -eux
52
+ [ "${{ matrix.toolchain }}" = "1.63.0" ] && echo 'RUSTFLAGS=' >> "$GITHUB_ENV"
53
+
44
54
- name: Setup Rust toolchain
55
run: ./ci/install-rust.sh
56
0 commit comments