From a1f8773953f24effbd9e1820adf46cbef09cd52c Mon Sep 17 00:00:00 2001 From: Orsiris de Jong Date: Thu, 7 Jul 2022 11:05:40 +0200 Subject: [PATCH] Add github actions workflow --- .github/workflows/linux.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/linux.yml diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml new file mode 100644 index 0000000..0d3dd84 --- /dev/null +++ b/.github/workflows/linux.yml @@ -0,0 +1,22 @@ +name: linux-tests + +on: [push, pull_request] + +jobs: + build: + + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest] + steps: + - name: Install dependencies + run: | + sudo apt-get intall inotify-tools acl + - name: Execute tests and generate coverage report + env: + RUNNING_ON_GITHUB_ACTIONS: true + run: | + dev/tests/run_tests.sh + - name: Upload Coverage to Codecov + uses: codecov/codecov-action@v1