Skip to content

chore: 0.1.6

chore: 0.1.6 #25

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Setup Nix Cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Run flake check
run: nix flake check
- name: Build
run: nix develop -c cargo build --verbose
- name: Clippy
run: nix develop -c cargo clippy
- name: Format check
run: nix develop -c cargo fmt --check