Skip to content

Merge pull request #7 from lotrekagency/fix/missing-error-description #12

Merge pull request #7 from lotrekagency/fix/missing-error-description

Merge pull request #7 from lotrekagency/fix/missing-error-description #12

Workflow file for this run

name: Test and Coverage
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]
name: Test on Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }} 🐍
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies πŸ“¦
run: |
pip install -r requirements-dev.txt
- name: Test with pytest and calculate coverage πŸ§ͺ
run: |
make test
- name: Upload coverage
uses: codecov/codecov-action@v2
with:
verbose: true