Skip to content

ci test

ci test #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
fmt-and-clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run formatter check
working-directory: rs
run: cargo fmt -- --check
- name: Run clippy
working-directory: rs
run: cargo clippy -- -D warnings
- name: Run tests
working-directory: rs
run: cargo test --workspace --all-targets --exclude wasm