2
0
mirror of https://github.com/deajan/osync synced 2024-11-15 12:12:56 +00:00
osync/.github/workflows/linux.yml

23 lines
478 B
YAML
Raw Normal View History

2022-07-07 09:05:40 +00:00
name: linux-tests
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Install dependencies
run: |
2022-07-07 09:06:26 +00:00
sudo apt-get install inotify-tools acl
2022-07-07 09:05:40 +00:00
- 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