Skip to content

Add coverage to readme #7

Add coverage to readme

Add coverage to readme #7

Workflow file for this run

name: Python application tests
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install dependencies
run: |
sudo apt install ffmpeg
make dependency
- name: Test with pytest
run: |
make testing
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: antonvolokha/filecrypt
file: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true