Skip to content

Version bump to 1.13.0 #145

Version bump to 1.13.0

Version bump to 1.13.0 #145

Workflow file for this run

name: CI
on:
push:
branches: [master]
paths-ignore:
- "*.md"
- "LICENSE"
- "*.wasm"
pull_request:
branches: [master]
paths-ignore:
- "*.md"
- "LICENSE"
- "*.wasm"
workflow_call:
jobs:
linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: rustfmt
target: wasm32-wasi
- name: lint
run: make check
workspace-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: rustfmt
target: wasm32-wasi
- name: lint
run: make test
wasmtime-provider:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: rustfmt
target: wasm32-wasi
- name: test
run: |
cd crates/wasmtime-provider
make test