Skip to content

init installable context #434

init installable context

init installable context #434

Workflow file for this run

name: "Build NH"
on:
pull_request:
push:
branches-ignore:
- 'update-*'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: cachix/install-nix-action@master
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4
- run: nix build -L
name: Build
- run: |
eval "$(nix print-dev-env)"
cargo fix --allow-dirty
cargo clippy --fix --allow-dirty
cargo fmt
git diff-index --quiet HEAD
name: Check clippy and formatting