Skip to content

formatting

formatting #174

Workflow file for this run

name: CI
on:
push:
branches:
master
pull_request:
branches:
master
jobs:
ci:
name: Build and run tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Build
run: cargo build --workspace
- name: Run tests
run: cargo test --workspace