Bump django from 4.1.1 to 4.1.13 in /backend #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Backend tests | |
on: | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ "*" ] | |
permissions: | |
contents: read | |
jobs: | |
run_tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
steps: | |
- | |
uses: actions/checkout@v3 | |
- | |
name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- | |
name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r backend/requirements.txt | |
pip install coverage | |
- | |
name: Test with unittest/coverage | |
run: | | |
cd backend | |
coverage run --source='.' manage.py test | |
python -m coverage json --omit "*/tests.py,*/migrations/*.py,tools/testtools.py,manage.py" | |
- | |
name: Upload coverage results | |
uses: actions/upload-artifact@v3 | |
if: strategy.job-index == 0 | |
with: | |
name: coverage | |
path: backend/coverage.json | |
update_coverage_badge_data: | |
runs-on: ubuntu-latest | |
needs: ['run_tests'] | |
if: github.ref == 'refs/heads/master' | |
steps: | |
- | |
name: Download coverage results | |
uses: actions/download-artifact@v3 | |
with: | |
name: coverage | |
- | |
name: Install jq | |
run: | | |
sudo apt install jq | |
- | |
name: Fetch coverage | |
id: coverage | |
shell: bash | |
run: | | |
echo "value=$(jq -r '[.totals.percent_covered_display][0]' coverage.json)" >> $GITHUB_OUTPUT | |
- | |
name: Create badge | |
uses: schneegans/dynamic-badges-action@v1.6.0 | |
with: | |
auth: ${{ secrets.GIST_SECRET }} | |
gistID: dad747c31377ea39fcd54bcd7d1702e2 | |
filename: respublica.json | |
label: Coverage | |
message: ${{ steps.coverage.outputs.value }}% | |
minColorRange: 50 | |
maxColorRange: 90 | |
valColorRange: ${{ steps.coverage.outputs.value }} |