Skip to content

Merge pull request #4 from kosmotive/dependabot/github_actions/dot-gi… #11

Merge pull request #4 from kosmotive/dependabot/github_actions/dot-gi…

Merge pull request #4 from kosmotive/dependabot/github_actions/dot-gi… #11

Workflow file for this run

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/[email protected]
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/[email protected]
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 }}