Skip to content

Commit

Permalink
add all build types
Browse files Browse the repository at this point in the history
  • Loading branch information
mcroomp committed Apr 5, 2024
1 parent a246e15 commit caecaff
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,15 @@ jobs:
with:
toolchain: stable
target: x86_64-pc-windows-msvc

- name: Build
run:
cargo build --locked --verbose
cargo build --locked --verbose --target wasm32-wasi
cargo build --locked --verbose --target aarch64-unknown-linux-musl
cargo build --locked --verbose --target x86_64-pc-windows-msvc

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

0 comments on commit caecaff

Please sign in to comment.