Skip to content

with clippy

with clippy #2

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: cargo check
- name: Lint
run: cargo clippy
- name: Run tests
run: cargo test