Skip to content

fix(exceptions): using get() method while getting ErrorDescription ke… #11

fix(exceptions): using get() method while getting ErrorDescription ke…

fix(exceptions): using get() method while getting ErrorDescription ke… #11

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