mirror of
https://github.com/Mic92/sops-nix.git
synced 2024-12-14 11:57:52 +00:00
32 lines
1 KiB
YAML
32 lines
1 KiB
YAML
name: "Test"
|
|
on:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '51 2 * * *'
|
|
jobs:
|
|
tests:
|
|
strategy:
|
|
matrix:
|
|
nixPath:
|
|
- nixpkgs=https://github.com/NixOS/nixpkgs/archive/nixos-20.09.tar.gz
|
|
- nixpkgs=https://github.com/NixOS/nixpkgs/archive/nixpkgs-unstable.tar.gz
|
|
os: [ ubuntu-latest, macos-latest ]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: cachix/install-nix-action@v12
|
|
with:
|
|
nix_path: "${{ matrix.nixPath }}"
|
|
extra_nix_config: "system-features = nixos-test benchmark big-parallel kvm"
|
|
- name: Setup cachix
|
|
uses: cachix/cachix-action@v8
|
|
with:
|
|
name: mic92
|
|
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
|
|
- name: Add keys group (needed for go tests)
|
|
run: sudo groupadd keys
|
|
if: matrix.os == 'ubuntu-latest'
|
|
- name: Build nix packages
|
|
run: nix-build --no-out-link release.nix
|
|
- name: Run unit tests
|
|
run: nix-shell --no-out-link ./unit-tests.nix --argstr sudo "$(command -v sudo)" --pure --run 'true'
|