Skip to content

Add build to flake.nix #103

Add build to flake.nix

Add build to flake.nix #103

Workflow file for this run

name: CI
on:
push:
branches: "*"
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run audit
run: cargo install cargo-audit && cargo audit