-
-
Notifications
You must be signed in to change notification settings - Fork 5
42 lines (42 loc) · 934 Bytes
/
flake-check.yaml
File metadata and controls
42 lines (42 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"concurrency": {
"cancel-in-progress": true,
"group": "test"
},
"jobs": {
"check": {
"environment": {
"name": "check",
"url": "${{steps.check.outputs.page_url}}"
},
"runs-on": "ubuntu-latest",
"steps": [
{
"uses": "actions/checkout@v4"
},
{
"uses": "wimpysworld/nothing-but-nix@main",
"with": {
"hatchet-protocol": "holster"
}
},
{
"uses": "DeterminateSystems/nix-installer-action@main"
},
{
"uses": "DeterminateSystems/magic-nix-cache-action@main"
},
{
"id": "check",
"run": "nix flake --accept-flake-config check path:dev --override-input dendrix . --print-build-logs"
}
]
}
},
"name": "flake check",
"on": {
"push": {},
"workflow_call": {},
"workflow_dispatch": {}
}
}