Skip to content

deps: update requests dependency #14

deps: update requests dependency

deps: update requests dependency #14

Workflow file for this run

name: πŸ§ͺ Test and Coverage
on:
workflow_dispatch:
pull_request:
branches: [ master, next ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.8", "3.9", "3.10"]
name: 🦠 Test on Python ${{ matrix.python-version }} with Django ${{ matrix.django-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: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install Django==${{ matrix.django-version }}
- name: πŸ”¬ Test with pytest and calculate coverage
run: make test
- name: 🩺 Upload coverage to codecov.io
uses: codecov/codecov-action@v2