Skip to content

Commit

Permalink
features all -> all-features
Browse files Browse the repository at this point in the history
  • Loading branch information
Furrior committed May 13, 2024
1 parent 7f0cc04 commit b96b6e5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit b96b6e5

Please sign in to comment.