mirror of
https://github.com/deajan/osync
synced 2024-11-15 12:12:56 +00:00
24 lines
502 B
YAML
24 lines
502 B
YAML
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 install inotify-tools acl
|
|
- name: Execute tests and generate coverage report
|
|
env:
|
|
RUNNING_ON_GITHUB_ACTIONS: true
|
|
run: |
|
|
ls -alh ./
|
|
sh ./dev/tests/run_tests.sh
|
|
- name: Upload Coverage to Codecov
|
|
uses: codecov/codecov-action@v1
|