Skip to content

Merge pull request #175 from browniebroke/upgrade/django-4.2 #56

Merge pull request #175 from browniebroke/upgrade/django-4.2

Merge pull request #175 from browniebroke/upgrade/django-4.2 #56

Workflow file for this run

name: DRF Writable Nested
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: 3.7
- python-version: 3.8
- python-version: 3.9
- python-version: "3.10"
- python-version: "3.11"
env:
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v1
- 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
python -m pip install tox tox-gh-actions
- name: Test with tox
run: tox
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
env_vars: PYTHON
fail_ci_if_error: true
files: ./coverage.xml
flags: unittests
name: codecov-umbrella
verbose: true