From b96b6e52ad1ad629d5cc525a1829f50b90d46e18 Mon Sep 17 00:00:00 2001 From: Furior Date: Tue, 14 May 2024 06:09:15 +0700 Subject: [PATCH] features all -> all-features --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5838f98..2ef6edf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,13 +22,13 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: Clippy (all features) - run: cargo clippy --target i686-pc-windows-msvc --features all --locked -- -D warnings + run: cargo clippy --target i686-pc-windows-msvc --all-features --locked -- -D warnings - name: Rustfmt run: cargo fmt -- --check - name: Build (release) (all features) - run: cargo build --target i686-pc-windows-msvc --features all --locked --release + run: cargo build --target i686-pc-windows-msvc --all-features --locked --release - uses: actions/upload-artifact@v3 with: @@ -61,18 +61,18 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: Check (all features) - run: cargo check --target i686-unknown-linux-gnu --locked --features all + run: cargo check --target i686-unknown-linux-gnu --locked --all-features - name: Build (Debug) (all features) - run: cargo build --target i686-unknown-linux-gnu --locked --features all + run: cargo build --target i686-unknown-linux-gnu --locked --all-features - name: Run tests (all features) - run: cargo test --target i686-unknown-linux-gnu --locked --features all + run: cargo test --target i686-unknown-linux-gnu --locked --all-features env: BYOND_BIN: /home/runner/BYOND/byond/bin - name: Build (release) (all features) - run: cargo build --target i686-unknown-linux-gnu --locked --features all --release + run: cargo build --target i686-unknown-linux-gnu --locked --all-features --release - uses: actions/upload-artifact@v3 with: