Skip to content

chore(deps): bump django-allauth from 0.63.6 to 64.2.1 #458

chore(deps): bump django-allauth from 0.63.6 to 64.2.1

chore(deps): bump django-allauth from 0.63.6 to 64.2.1 #458

Workflow file for this run

name: Django CI
on:
pull_request:
branches:
- master
push:
branches:
- master
workflow_dispatch:
inputs:
tags:
description: 'Test scenario tags'
required: false
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
timeout-minutes: 10
runs-on: ubuntu-latest
name: Build and test
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: "Setup Python, Poetry and Dependencies"
uses: dsoftwareinc/setup-python-poetry-action@v1
with:
python-version: '3.12'
poetry-version: '1.8.1'
- name: Run Tests
run: |
cd forum
poetry run coverage run manage.py test --no-logs
- name: Coverage report
id: coverage_report
shell: bash
run: |
mv forum/.coverage .
cp forum/.coveragerc .
echo 'REPORT<<EOF' >> $GITHUB_ENV
poetry run coverage report >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- uses: mshick/add-pr-comment@v2
with:
message: |
Coverage report:
```
${{ env.REPORT }}
```
message-id: 'coverage'
allow-repeats: false
- name: json report
run: |
poetry run coverage json
echo "COVERAGE=$(jq '.totals.percent_covered_display|tonumber' coverage.json)" >> $GITHUB_ENV
- if: ${{ github.event_name == 'push' }}
name: Create Awesome Badge
uses: schneegans/dynamic-badges-action@v1.7.0
with:
auth: ${{ secrets.GIST_SECRET }}
gistID: ${{ secrets.COVERAGE_GIST_ID }}
filename: wiwik.json
label: Coverage
message: ${{ env.COVERAGE }}%
color: green