Update crate dependencies #80
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
on: [push] | |
name: build | |
jobs: | |
check: | |
name: check build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: wasm32-unknown-unknown | |
- name: Install protoc compiler | |
run: | | |
sudo apt-get update | |
sudo apt-get install protobuf-compiler | |
- uses: jetli/[email protected] | |
with: | |
version: 'latest' | |
- run: | | |
cargo check | |
cargo build | |
wasm-pack build --release --target web |