2020-06-21 09:22:33 -04:00
|
|
|
name: "Test"
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
2023-09-19 01:29:42 -04:00
|
|
|
branches:
|
|
|
|
- master
|
2020-06-21 09:22:33 -04:00
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-10 22:22:39 -04:00
|
|
|
- uses: actions/checkout@v4
|
2024-05-19 22:38:05 -04:00
|
|
|
- uses: cachix/install-nix-action@V27
|
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
|