Skip to content

FEAT: nix dev shell

FEAT: nix dev shell #2

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
test:
name: Build and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust-version: [1.65.0, stable, beta, nightly]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust-version }}
- name: Install nextest to run tests
uses: taiki-e/install-action@nextest
- name: Run tests
run: cargo nextest run