Remove unused dependencies #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# 1.0.30 changed the format for downloads for macos, so we test | |
# around that version specifically | |
wabt-version: ["1.0.20", "1.0.29", "1.0.30", "1.0.31", "1.0.34", "1.0.35"] | |
os: [ubuntu-latest, macos-13, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use wabt ${{ matrix.wabt-version }} | |
uses: ./ | |
with: | |
wabt-version: ${{ matrix.wabt-version }} | |
- run: wat2wasm --help |