2023-06-03 10:48:41 +01:00
|
|
|
name: use nix
|
|
|
|
|
|
|
|
on: push
|
|
|
|
env:
|
|
|
|
DEV_SHELL_NAME: CI
|
2023-06-02 12:22:44 +01:00
|
|
|
jobs:
|
2023-06-03 10:48:41 +01:00
|
|
|
build:
|
2023-07-01 09:21:40 +01:00
|
|
|
runs-on: node-latest
|
2023-06-03 10:48:41 +01:00
|
|
|
steps:
|
2023-07-01 09:00:59 +01:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install linux \
|
|
|
|
--extra-conf "sandbox = false" \
|
|
|
|
--init none \
|
|
|
|
--no-confirm
|
2023-06-27 07:23:21 +01:00
|
|
|
- uses: actions/checkout@v3
|
2023-07-01 10:06:31 +01:00
|
|
|
name: Checkout
|
|
|
|
- name: Metadata
|
2023-06-27 07:23:21 +01:00
|
|
|
run: |
|
2023-06-03 10:48:41 +01:00
|
|
|
nix flake metadata
|
2023-07-01 10:06:31 +01:00
|
|
|
- name: Statix
|
|
|
|
run: |
|
2023-06-27 07:23:21 +01:00
|
|
|
nix --no-sandbox develop -c statix check
|
2023-07-01 10:06:31 +01:00
|
|
|
- name: Flake check
|
|
|
|
run: |
|
|
|
|
nix flake check
|