Skip to content

Commit

Permalink
chore(ci): run tests with rust nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardomourar committed Sep 22, 2023
1 parent 1299078 commit 075e5a9
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 25 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,16 @@ jobs:
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.3
- name: Install Rust
run: rustup update stable --no-self-update && rustup default stable && rustup target add wasm32-wasi && rustup target add wasm32-unknown-unknown
run: |
rustup update nightly --no-self-update
rustup default nightly
rustup target add wasm32-wasi
rustup target add wasm32-unknown-unknown
rustup component add clippy
rustup component add rustfmt
shell: bash
- name: Install Wasmtime
run: cargo install wasmtime-cli --locked --features="component-model" --git https://github.com/bytecodealliance/wasmtime --rev 848764a9412a1bd66de4087f5ba0670d61384af1
- name: Run all tests
run: cargo test --all

Expand Down
50 changes: 26 additions & 24 deletions example/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 075e5a9

Please sign in to comment.