Skip to content

Commit ff6012f

Browse files
Merge pull request #254 from jonas-schievink/deny-warnings
Deny warnings in CI
2 parents 63cba63 + 47f4962 commit ff6012f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
build:
1010
runs-on: ubuntu-latest
11-
timeout-minutes: 10
11+
timeout-minutes: 30
1212
continue-on-error: ${{ matrix.rust_version == 'nightly' }}
1313

1414
steps:
@@ -34,7 +34,12 @@ jobs:
3434
thumbv8m.main-none-eabi
3535
- name: Build Crates
3636
run: cargo test -p xtask
37+
env:
38+
RUSTFLAGS: ${{ matrix.rustflags }}
3739

3840
strategy:
3941
matrix:
40-
rust_version: [stable, beta, nightly]
42+
rust_version: [beta, nightly]
43+
include:
44+
- rust_version: stable
45+
rustflags: --deny warnings

0 commit comments

Comments
 (0)