Skip to content

add: master of arms #338

add: master of arms

add: master of arms #338

Workflow file for this run

name: Foundry
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Rust Cache
uses: Swatinem/[email protected]
- name: Install Wasm-Pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Build
run: cargo build
- name: Test
run: cargo test
- name: Build Wasm target
run: wasm-pack build --target web