From 80a32af2014b6bd8c5d7e9eead591e7008241cb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 21 Jun 2020 14:22:33 +0100 Subject: [PATCH] replace travis with github action This way we get the latest nix. --- .github/workflows/test.yml | 13 +++++++++++++ .travis.yml | 3 --- 2 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/test.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..ed8749f --- /dev/null +++ b/.github/workflows/test.yml @@ -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 {}).lib.version' + - run: ./tests/run.py diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 91cf21d..0000000 --- a/.travis.yml +++ /dev/null @@ -1,3 +0,0 @@ -language: nix -script: - ./tests/run.py