2023-10-05 15:23:06 -04:00
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-10-05 15:54:47 -04:00
|
|
|
- uses: actions/checkout@v3
|
2023-10-05 16:23:41 -04:00
|
|
|
- name: install nix action
|
|
|
|
uses: https://github.com/DeterminateSystems/nix-installer-action@main
|
2023-10-05 15:58:45 -04:00
|
|
|
with:
|
2023-10-05 16:23:41 -04:00
|
|
|
github-token: ${{ secrets.GH_TOKEN }}
|
2023-10-05 15:54:47 -04:00
|
|
|
- run: nix flake check
|