Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/go_build.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
go-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v4
Expand All @@ -17,3 +17,13 @@ jobs:

- name: Build
run: go build -v ./cmd/mithril

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

- uses: cachix/install-nix-action@v31

- name: Nix flake check
run: nix flake check
2 changes: 1 addition & 1 deletion nix/packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ in {
version = "0.0.0";
src = self;
subPackages = ["cmd/mithril"];
vendorHash = "sha256-BVgVVvRAllEfb8D6Mh6NSaeLLOx6zeXwY4QyCwP0veo=";
vendorHash = "sha256-k9fz50CPtu/T2VWS5WCcurDRfop+AGtBuhB+rD9UnyA=";
nativeBuildInputs = [pkgs.pkg-config];
buildInputs = [pkgs.zstd];
env = {
Expand Down
Loading