Skip to content

prepare release of the doc #4

prepare release of the doc

prepare release of the doc #4

Workflow file for this run

name: Wagtail Parler CI
on: [push, pull_request]
permissions:
pull-requests: write
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# Current configuration:
# - python 3.7, django 3.2, wagtail 4.1
# - python 3.7, django 3.2, wagtail 4.2
# - python 3.7, django 3.2, wagtail 5.0
# - python 3.9, django 4.2, wagtail 5.0
# - python 3.9, django 4.2, wagtail 5.1
# - python 3.11, django 4.2, wagtail 5.1
# - python 3.11, django main, wagtail main
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
include:
- python: '3.7'
django: 'Django>=3.2,<3.3'
wagtail: 'wagtail>=4.1,<4.2'
experimental: false
- python: '3.7'
django: 'Django>=3.2,<3.3'
wagtail: 'wagtail>=4.2,<4.3'
experimental: false
- python: '3.7'
django: 'Django>=3.2,<3.3'
wagtail: 'wagtail>=5.0,<5.1'
experimental: false
- python: '3.9'
django: 'Django>=4.2,<4.3'
wagtail: 'wagtail>=5.0,<5.1'
experimental: false
- python: '3.9'
django: 'Django>=4.2,<4.3'
wagtail: 'wagtail>=5.1,<5.2'
experimental: false
- python: '3.11'
django: 'Django>=4.2,<4.3'
wagtail: 'wagtail>=5.1,<5.2'
experimental: false
- python: '3.11'
django: 'git+https://github.com/django/django.git@main#egg=Django'
wagtail: 'git+https://github.com/wagtail/wagtail.git@main#egg=wagtail'
experimental: true
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[testing]
pip install "${{ matrix.django }}"
pip install "${{ matrix.wagtail }}"
- name: Test
run: |
coverage run --parallel-mode ./runtests.py
- name: Upload coverage data
uses: actions/upload-artifact@v3
with:
name: coverage-data
path: .coverage.*
qa:
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install coverage black flake8 mypy types-requests
- name: Check black
run: |
black --check ./
- name: Check flake8
run: |
flake8
- name: Check mypy
run: |
mypy -p wagtail_parler
- name: Download coverage data
uses: actions/download-artifact@v3
with:
name: coverage-data
- name: Save PR number and combine coverage data
run: |
mkdir -p ./pr
coverage combine
coverage report -m --format="markdown" > ./pr/coverage.md
coverage report --format="total" > ./pr/coverage_total
echo ${{ github.event.number }} > ./pr/NR
- uses: actions/upload-artifact@v2
with:
name: pr
path: pr/