Add github actions workflow

This commit is contained in:
Orsiris de Jong 2022-07-07 11:05:40 +02:00 committed by GitHub
parent 35a71ad517
commit a1f8773953
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 0 deletions

22
.github/workflows/linux.yml vendored Normal file
View File

@ -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