Skip to content

CI

CI #75

Workflow file for this run

on:
push:
branches: [main]
pull_request_review:
types: [submitted]
name: CI
jobs:
build:
name: Build
if: github.event.review.state == 'approved'
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add clippy
- run: rustup target add wasm32-unknown-unknown
- uses: actions-rs/cargo@v1
with:
command: build