.gitea/workflows/check: init
Build and test / build-dynamic-library (push) Successful in 45s
Build and test / check (push) Successful in 46s
Build and test / build-static-library (push) Successful in 53s
Build and test / test (push) Successful in 53s
Run nix flake check / build (push) Failing after 15m56s

This commit is contained in:
2026-06-04 20:20:55 +09:00
parent fe413c671b
commit 5b54a07584
2 changed files with 27 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
name: "Run nix flake check"
on:
workflow_dispatch:
pull_request:
push:
jobs:
build:
runs-on: debian-latest
steps:
- uses: actions/checkout@v6
- name: Install sudo
run: apt-get update && apt-get -y install sudo
- name: Install nix
uses: https://github.com/cachix/install-nix-action@v31
- name: Nix flake check
run: nix flake check -L
+8
View File
@@ -260,5 +260,13 @@
};
in custom-sqlite.sqlite;
});
checks = forAllSystems (system: _: _: {
inherit (self.packages.${system})
sqlite-tamerye-static
sqlite-tamerye-static-cli
tamerye-shared-lib-android
;
});
};
}