chore: increment crate versions to v0.8.0 and MSRV to 1.84 #68
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: Build | |
on: | |
push: | |
branches: [main, next] | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
build: | |
name: Build Client and CLI on ubuntu-latest | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Install Rust toolchain | |
run: rustup update --no-self-update | |
- name: make - build | |
run: make build | |
build-wasm: | |
name: Build Client on ubuntu-latest for wasm | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Install Rust toolchain | |
run: rustup update --no-self-update | |
- name: Add wasm32-unknown-unknown target | |
run: rustup target add wasm32-unknown-unknown | |
- name: make - build-wasm | |
run: make build-wasm |