Skip to content

Update test/README.md #18

Update test/README.md

Update test/README.md #18

Workflow file for this run

name: CI
on:
push:
branches:
- "main"
- "develop"
pull_request:
branches:
- "main"
- "develop"
workflow_dispatch: {}
jobs:
lints:
name: Build
runs-on: ubuntu-latest
permissions:
actions: write
steps:
- uses: actions/checkout@v3
- name: Install Nix
uses: nixbuild/nix-quick-install-action@v26
- name: Cache Nix
uses: actions/cache@v3
with:
key: nix-${{ runner.os }}-${{ hashFiles('**/*.nix') }}
restore-keys: nix-${{ runner.os }}-
path: /nix
- name: Run `nix flake check`
run: make ci