summaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/check.yml
blob: 0a15f83aa48d9d7d076dbff69ff6fb5b5f344ff7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: check

on:
  push:
    branches: [master]
  pull_request:
  workflow_dispatch:

jobs:
  check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - uses: cachix/install-nix-action@v31
        with:
          github_access_token: ${{ secrets.GITHUB_TOKEN }}

      - name: just doctor
        run: nix develop ./nix --command just doctor

      - name: just check
        run: nix develop ./nix --command just check