Skip to content

Use SPDX short code for license in Pyproject.toml #263

Use SPDX short code for license in Pyproject.toml

Use SPDX short code for license in Pyproject.toml #263

Workflow file for this run

name: coverage
on:
pull_request:
push:
branches:
- master
jobs:
codecov:
# ---------------------------------------------------
# Documentation and examples can be found at
# https://github.com/snok/install-poetry
# ---------------------------------------------------
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10.5"
- name: Install poetry
uses: snok/install-poetry@v1
with:
virtualenvs-in-project: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}-1
- name: Install dependencies
run: poetry install
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
- name: Test with Django test
run: |
poetry run coverage run manage.py test -v 2
poetry run coverage xml
- name: Upload coverage
uses: codecov/codecov-action@v2
with:
file: ./coverage.xml
fail_ci_if_error: true