From bc1fb0680a4e9d680083c86c1f1459b5ba5a1379 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 8 Mar 2022 15:54:22 +0100 Subject: [PATCH] chore(CI): migrate TravisCI to GitHub Actions [CRE-1204] Signed-off-by: Morris Jobke --- .github/workflows/ci.yml | 17 +++++++++++++++++ .travis.yml | 5 ----- 2 files changed, 17 insertions(+), 5 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..3a6d814 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI + +on: pull_request + +jobs: + test: + name: Test + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Test the application + run: make test + + - name: Build the application + run: make build \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 0706fc9..0000000 --- a/.travis.yml +++ /dev/null @@ -1,5 +0,0 @@ -language: minimal - -script: - - make test - - make build \ No newline at end of file