replace travis with github action

This way we get the latest nix.
This commit is contained in:
Jörg Thalheim 2020-06-21 14:22:33 +01:00
parent 373856f3e1
commit 80a32af201
No known key found for this signature in database
GPG Key ID: 003F2096411B5F92
2 changed files with 13 additions and 3 deletions

13
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,13 @@
name: "Test"
on:
pull_request:
push:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v10
- name: Show nixpkgs version
run: nix-instantiate --eval -E '(import <nixpkgs> {}).lib.version'
- run: ./tests/run.py

View File

@ -1,3 +0,0 @@
language: nix
script:
./tests/run.py