We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1529b87 commit 84cbe9dCopy full SHA for 84cbe9d
.gitignore
@@ -13,4 +13,4 @@ vendor/
13
.direnv
14
result
15
.pre-commit-config.yaml
16
-.pre-commit-config.yaml
+*.log
flake.nix
@@ -85,6 +85,14 @@
85
go-jsonschema-go124 = makePackage pkgs.go_1_24;
86
go-jsonschema-go125 = makePackage pkgs.go;
87
default = makePackage pkgs.go;
88
+
89
+ test-ci = pkgs.writeShellApplication {
90
+ name = "test-ci";
91
+ runtimeInputs = [pkgs.act];
92
+ text = ''
93
+ exec act -W .github/workflows/nix.yaml -P ubuntu-24.04=catthehacker/ubuntu:act-24.04 "$@"
94
+ '';
95
+ };
96
};
97
98
checks = {
0 commit comments