From 310f8bb1ba9d44f9770eccf3ed722c4e3ae0ffff Mon Sep 17 00:00:00 2001 From: Stephan Beyer Date: Sun, 4 Aug 2024 03:44:26 +0200 Subject: [PATCH] Replace Travis CI by GitHub Actions --- .github/workflows/tests.yml | 12 ++++++++++++ .travis.yml | 22 ---------------------- 2 files changed, 12 insertions(+), 22 deletions(-) create mode 100644 .github/workflows/tests.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..822e2fc --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,12 @@ +name: Compilation and Tests + +on: [push, pull_request] + +jobs: + linux-build: + runs-on: ubuntu-latest + steps: + - name: Clone and checkout commit + uses: actions/checkout@v4 + - name: Quickstart + run: util/quickstart.sh diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 180bd7a..0000000 --- a/.travis.yml +++ /dev/null @@ -1,22 +0,0 @@ -language: cpp - -os: linux -sudo: required -dist: trusty - -compiler: - - gcc - -addons: - apt: - packages: - - doxygen - - graphviz - -git: - depth: 3 - submodules: false - -script: - - util/quickstart.sh - - util/check-doxygen-errors.sh