Skip to content

let's try that again #61

let's try that again

let's try that again #61

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
# check on macos-13 (x86) and macos-latest (ARM through Rosetta)
os: [ubuntu-latest, macos-13, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: cargo test
run: make unit-tests
- name: snapshot tests
run: make snapshot-tests