Skip to content

link to repository

link to repository #27

Workflow file for this run

name: Rust build & tests
on:
pull_request:
push:
branches:
- "master"
tags:
- "*"
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --locked --verbose
- name: Run tests
run: cargo test --locked --verbose