Skip to content

Commit

Permalink
Let CI run if linting/formatting/check fails
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmeow committed Dec 29, 2023
1 parent 11b80e7 commit 3753d6b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ jobs:
- uses: Swatinem/rust-cache@v2

- name: Clippy (all features)
continue-on-error: true
run: cargo clippy --target i686-pc-windows-msvc --features all --locked -- -D warnings

- name: Rustfmt
continue-on-error: true
run: cargo fmt -- --check

- name: Build (release) (all features)
Expand Down Expand Up @@ -69,12 +71,15 @@ jobs:
- uses: Swatinem/rust-cache@v2

- name: Check (all features)
continue-on-error: true
run: cargo check --target i686-unknown-linux-gnu --locked --features all

- name: Build (debug) (all features)
continue-on-error: true
run: cargo build --target i686-unknown-linux-gnu --locked --features all

- name: Run tests (all features)
continue-on-error: true
run: cargo test --target i686-unknown-linux-gnu --locked --features all
env:
BYOND_BIN: /home/runner/BYOND/byond/bin
Expand Down

0 comments on commit 3753d6b

Please sign in to comment.