Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
mcroomp committed Apr 5, 2024
1 parent e39f9f0 commit 4217c8d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ jobs:
target: x86_64-pc-windows-msvc

- name: Build default target
run: cargo build --locked --verbose
run: cargo build --locked
- name: Build wasm32-wasi
run: cargo build --locked --verbose --target wasm32-wasi
run: cargo build --locked --target wasm32-wasi --lib
- name: Build aarch64-unknown-linux-musl
run: cargo build --locked --verbose --target aarch64-unknown-linux-musl
run: cargo build --locked --target aarch64-unknown-linux-musl --lib
- name: Build x86_64-pc-windows-msvc
run: cargo build --locked --verbose --target x86_64-pc-windows-msvc
run: cargo build --locked --target x86_64-pc-windows-msvc
- name: Run tests
run: cargo test --locked --verbose
run: cargo test --locked
- name: Check formatting
run: cargo fmt --check

0 comments on commit 4217c8d

Please sign in to comment.