2020-06-21 09:22:33 -04:00
|
|
|
name: "Test"
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-06 21:02:31 -05:00
|
|
|
- uses: actions/checkout@v3
|
2021-11-21 21:03:04 -05:00
|
|
|
- uses: cachix/install-nix-action@v16
|
2020-11-26 02:34:03 -05:00
|
|
|
with:
|
|
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
2020-06-21 09:22:33 -04:00
|
|
|
- name: Show nixpkgs version
|
|
|
|
run: nix-instantiate --eval -E '(import <nixpkgs> {}).lib.version'
|
|
|
|
- run: ./tests/run.py
|