Skip to content

add ci build configuration #2

add ci build configuration

add ci build configuration #2

Workflow file for this run

name: Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build and Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install latest toolchain
uses: actions-rs/toolchain@v1
with:
components: rustfmt, clippy
override: true
target: wasm32-wasi
- uses: actions-rs/clippy-check@v1
with:
args: --target=wasm32-wasi
- name: Build the project
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --target=wasm32-wasi --release