Skip to content

Feature/multi select moderation in Django admin #695

Feature/multi select moderation in Django admin

Feature/multi select moderation in Django admin #695

Workflow file for this run

name: CodeCov
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
push:
branches:
- master
jobs:
unit-tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [ 3.8, 3.9, '3.10' ]
requirements-file: [
django_32.txt,
django_42.txt,
]
os: [
ubuntu-20.04,
]
versioning-enabled: [ 0, 1 ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: 'tests/requirements/*.txt'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r tests/requirements/${{ matrix.requirements-file }}
python setup.py install
- name: Run coverage
env:
ENABLE_VERSIONING: ${{ matrix.versioning-enabled }}
run: coverage run setup.py test
- name: Upload coverage data
uses: actions/upload-artifact@v2
with:
name: coverage-data
path: '.coverage*'
coverage:
name: Coverage
runs-on: ubuntu-20.04
needs: unit-tests
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: 3.9
- name: Install dependencies
run: python -m pip install --upgrade coverage
- name: Download data
uses: actions/download-artifact@v3
with:
name: coverage-data
- name: Combine coverage
run: |
python -m coverage combine
python -m coverage html --skip-covered --skip-empty
python -m coverage report
- name: Upload HTML report
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: html-report
path: htmlcov