Add support for the Open edX Redwood release #667
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: Python package | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- '3.8' | |
- '3.11' | |
pip-version: | |
- 22.0.4 | |
- 23.0.1 | |
- 23.2.1 | |
include: | |
- python-version: '3.12' | |
pip-version: '23.2.1' | |
steps: | |
- name: Check out code | |
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: | | |
pip install "tox<4" tox-gh-actions tox-pip-version setuptools | |
- env: | |
TOX_PIP_VERSION: ${{ matrix.pip-version }} | |
name: Test with tox (pip ${{ matrix.pip-version }}) | |
run: tox | |
- name: Upload coverage data | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage-${{ matrix.python-version }} | |
path: .coverage* | |
retention-days: 1 | |
report: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v1 | |
- name: Download artifacts | |
uses: actions/download-artifact@v3 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
pip install coverage | |
- name: Compile coverage data | |
run: | | |
mv coverage-*/.coverage* . | |
coverage combine | |
coverage html | |
coverage xml | |
coverage report | |
- name: Upload htmlcov archive | |
uses: actions/upload-artifact@v3 | |
with: | |
name: htmlcov | |
path: htmlcov | |
retention-days: 7 | |
- name: Upload to codecov | |
uses: codecov/codecov-action@v3 |