Bump once_cell from 1.18.0 to 1.19.0 in /native/wasmex #36
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: 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 |