Skip to content

Commit

Permalink
cleanup ci
Browse files Browse the repository at this point in the history
  • Loading branch information
robherley committed Jan 27, 2025
1 parent 16f3e71 commit 80b9b2c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,12 @@ jobs:

steps:
- uses: actions/checkout@v4
- run: |
wget https://github.com/tinygo-org/tinygo/releases/download/v$TINYGO_VERSION/tinygo_$TINYGO_VERSION_amd64.deb
sudo dpkg -i tinygo_$TINYGO_VERSION_amd64.deb
- name: setup tinygo
run: |
wget https://github.com/tinygo-org/tinygo/releases/download/v${TINYGO_VERSION}/tinygo_${TINYGO_VERSION}_amd64.deb
sudo dpkg -i tinygo_${TINYGO_VERSION}_amd64.deb
- run: cargo install wasm-tools wkg
- run: script/init
- run: script/build-examples
- run: cargo build --verbose
- run: cargo test --verbose

0 comments on commit 80b9b2c

Please sign in to comment.