2023-02-07 02:46:45 +01:00
|
|
|
name: "Test"
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: cachix/install-nix-action@v18
|
|
|
|
with:
|
|
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
2023-02-13 00:52:56 +01:00
|
|
|
- uses: cachix/cachix-action@v12
|
2023-02-07 02:46:45 +01:00
|
|
|
with:
|
|
|
|
name: rix101
|
|
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
2023-02-07 03:07:21 +01:00
|
|
|
# - run: nix build
|
2023-02-07 02:46:45 +01:00
|
|
|
- run: nix flake check
|
2023-02-17 01:50:35 +01:00
|
|
|
- run: nix-build
|
|
|
|
- run: nix-shell -run "echo OK"
|