sops-nix/.github/workflows/test.yml
dependabot[bot] 91e08ca055
Bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v6...v7)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-22 22:02:12 +00:00

22 lines
573 B
YAML

name: "Test"
on:
pull_request:
push:
branches:
- master
schedule:
- cron: '51 2 * * *'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
extra-substituters = https://cache.thalheim.io
extra-trusted-public-keys = cache.thalheim.io-1:R7msbosLEZKrxk/lKxf9BTjOOH7Ax3H0Qj0/6wiHOgc=
- name: Add keys group (needed for go tests)
run: sudo groupadd keys
- name: Run unit tests
run: nix run .#unit-tests