From 2e881abad171f4f516369dd08ebd0124075b076f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Wed, 3 Jun 2020 15:43:22 +0200 Subject: github actions -> travis --- .github/workflows/ci.yml | 13 +++++++++++++ .travis.yml | 7 ------- 2 files changed, 13 insertions(+), 7 deletions(-) create mode 100644 .github/workflows/ci.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..a4c6829 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,13 @@ +name: "CI" +on: + pull_request: + push: +jobs: + tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: cachix/install-nix-action@v9 + with: + skip_adding_nixpkgs_channel: true + - run: nix-build release.nix diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index e112de4..0000000 --- a/.travis.yml +++ /dev/null @@ -1,7 +0,0 @@ -language: cpp -dist: xenial -script: - - ./bootstrap.sh - - ./configure - - make - - cd tests && make check -- cgit v0.12