Skip to content

Bump wat from 1.0.73 to 1.0.75 in /native/wasmex #9

Bump wat from 1.0.73 to 1.0.75 in /native/wasmex

Bump wat from 1.0.73 to 1.0.75 in /native/wasmex #9

name: Elixir Compatibility
on:
pull_request:
push:
branches:
- main
env:
MIX_ENV: test
WASMEX_BUILD: true
jobs:
test:
runs-on: ubuntu-latest
name: OTP ${{ matrix.otp }} / Elixir ${{ matrix.elixir }}
strategy:
fail-fast: false
matrix:
otp: [24.3, 25.2, 26.1]
elixir: [1.13.4, 1.14.5, 1.15.6]
exclude:
- otp: 26.1
elixir: 1.13.4
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- name: Add targets
run: |
rustup target add wasm32-unknown-unknown
rustup target add wasm32-wasi
- run: mix do deps.get, deps.compile
- run: mix test