From b3e5fa5c44fdf8c9b14492c4a3c4c1a137b8741e Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Wed, 20 Apr 2022 17:18:24 +0200 Subject: CI: deny warnings again MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/rapier-ci-build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/rapier-ci-build.yml b/.github/workflows/rapier-ci-build.yml index 640dec8..b4bc538 100644 --- a/.github/workflows/rapier-ci-build.yml +++ b/.github/workflows/rapier-ci-build.yml @@ -18,8 +18,8 @@ jobs: run: cargo fmt -- --check build-native: runs-on: ubuntu-latest -# env: -# RUSTFLAGS: -D warnings + env: + RUSTFLAGS: -D warnings steps: - uses: actions/checkout@v2 - run: sudo apt-get install -y cmake libxcb-composite0-dev @@ -51,8 +51,8 @@ jobs: run: cargo check -j 1 --verbose -p rapier-examples-3d; build-wasm: runs-on: ubuntu-latest -# env: -# RUSTFLAGS: -D warnings + env: + RUSTFLAGS: -D warnings steps: - uses: actions/checkout@v2 - run: rustup target add wasm32-unknown-unknown @@ -62,8 +62,8 @@ jobs: run: cd crates/rapier3d && cargo build --verbose --features wasm-bindgen --target wasm32-unknown-unknown; build-wasm-emscripten: runs-on: ubuntu-latest -# env: -# RUSTFLAGS: -D warnings + env: + RUSTFLAGS: -D warnings steps: - uses: actions/checkout@v2 - run: rustup target add wasm32-unknown-emscripten -- cgit