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 a1680d0 commit ae5246a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,17 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-wasi,aarch64-unknown-linux-musl,x86_64-pc-windows-msvc
- name: Build
run: cargo build --locked --verbose
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: Run tests
run: cargo test --locked --verbose
- name: Check formatting
Expand Down

0 comments on commit ae5246a

Please sign in to comment.