fix: use I64 in all places #141
Workflow file for this run
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
name: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: default | |
toolchain: 1.73.0 | |
target: wasm32-wasi | |
default: true | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.x' | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Update deps | |
run: | | |
./install-wasi-sdk.sh | |
go install github.com/extism/cli/extism@latest | |
cd /tmp | |
# get just wasm-merge and wasm-opt | |
curl -L https://github.com/WebAssembly/binaryen/releases/download/version_116/binaryen-version_116-x86_64-linux.tar.gz > binaryen.tar.gz | |
tar xvzf binaryen.tar.gz | |
sudo cp binaryen-version_116/bin/wasm-merge /usr/local/bin | |
- name: Run Tests | |
env: | |
QUICKJS_WASM_SYS_WASI_SDK_PATH: "${{ github.workspace }}/wasi-sdk" | |
run: | | |
make | |
make test |