Skip to content

Commit

Permalink
Merge pull request #254 from jonas-schievink/deny-warnings
Browse files Browse the repository at this point in the history
Deny warnings in CI
  • Loading branch information
jonas-schievink authored Oct 26, 2020
2 parents 63cba63 + 47f4962 commit ff6012f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
timeout-minutes: 30
continue-on-error: ${{ matrix.rust_version == 'nightly' }}

steps:
Expand All @@ -34,7 +34,12 @@ jobs:
thumbv8m.main-none-eabi
- name: Build Crates
run: cargo test -p xtask
env:
RUSTFLAGS: ${{ matrix.rustflags }}

strategy:
matrix:
rust_version: [stable, beta, nightly]
rust_version: [beta, nightly]
include:
- rust_version: stable
rustflags: --deny warnings

0 comments on commit ff6012f

Please sign in to comment.