Extract notes via events issue #539 #93
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
# Runs no-std related jobs. | |
name: no-std | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
no-std: | |
name: build ${{matrix.toolchain}} no-std for wasm32-unknown-unknown | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
toolchain: [stable, nightly] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{matrix.toolchain}} | |
override: true | |
- run: rustup target add wasm32-unknown-unknown | |
- uses: davidB/rust-cargo-make@v1 | |
- name: cargo make - build-no-std | |
run: cargo make build-no-std |