From 43f7bc9eb217874d47dfdd84247d5e6c3eed6d3c Mon Sep 17 00:00:00 2001 From: Tim Perry Date: Thu, 24 Jun 2021 15:44:43 +0200 Subject: [PATCH] Move from Travis to GitHub Actions --- .github/workflows/ci.yml | 13 +++++++++++++ .travis.yml | 4 ---- 2 files changed, 13 insertions(+), 4 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..4e22554 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,13 @@ +name: CI +on: push +jobs: + build: + name: Build & test + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + with: + submodules: recursive + + - run: bash ./test.sh \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index f240188..0000000 --- a/.travis.yml +++ /dev/null @@ -1,4 +0,0 @@ -language: bash - -script: - - ./test.sh