Skip to content

bug

bug #6

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
tags-ignore: [ "v*" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/flake-checker-action@main
- name: Check
run: nix develop -c cargo check
- name: Lint
run: nix develop -c cargo clippy
- name: Run tests
run: nix develop -c cargo test