warning -> error

This commit is contained in:
sfja 2026-03-30 11:08:01 +02:00
parent e7bd1bb8bf
commit 476765b685

View File

@ -20,6 +20,8 @@ jobs:
name: Lint name: Lint
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: sfja/h5-mst-ci:game-ci container: sfja/h5-mst-ci:game-ci
env:
RUSTFLAGS: "-Dwarnings"
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- run: rustup default stable - run: rustup default stable
@ -28,7 +30,6 @@ jobs:
run: cargo check run: cargo check
- name: Clippy - name: Clippy
working-directory: ./game working-directory: ./game
continue-on-error: true
run: cargo clippy run: cargo clippy
build_and_test: build_and_test:
name: Build and test name: Build and test