Skip to content

Set up CI for repo

Set up CI for repo #5

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
name: Run on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- run: cargo fetch
- name: Build tests
run: cargo build --workspace --verbose --all-features --tests
- name: Run tests
run: cargo test --workspace --verbose --all-features