diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-08-31 17:12:15 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-08-31 17:22:29 +0900 |
| commit | 2dbd0f026b3ff3dd744fb70ecff45916d97f14a6 (patch) | |
| tree | fb44687b4dc599b5136ca362cda48180d031a02c | |
| parent | 7bbfa1e32537ea0c5e98c0dbb5f77f7bf342118b (diff) | |
| download | ducc-2dbd0f026b3ff3dd744fb70ecff45916d97f14a6.tar.gz ducc-2dbd0f026b3ff3dd744fb70ecff45916d97f14a6.tar.zst ducc-2dbd0f026b3ff3dd744fb70ecff45916d97f14a6.zip | |
ci: set up GitHub Actions
| -rw-r--r-- | .github/workflows/test.yaml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..2a37027 --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,17 @@ +name: Test + +on: + push: + branches: [main] + +jobs: + tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: cachix/install-nix-action@v25 + with: + nix_path: nixpkgs=channel:nixos-unstable + + - run: nix develop --command just -- test-all |
