chore(deps): update registry.fedoraproject.org/fedora docker tag to v42 #1031
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: mdapi | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
ci-basic: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
container: fedorapython/fedora-python-tox:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install the base dependencies | |
run: | | |
python3 -m pip install --upgrade poetry tox | |
- name: Check the correctness of the project config | |
run: | | |
poetry check | |
- name: Check the quality of the code | |
run: | | |
tox -e cleaning | |
ci-tests-download-required: | |
strategy: | |
fail-fast: false | |
matrix: | |
tox-env: ["py38_download_required", "py39_download_required", "py310_download_required", "py311_download_required", "py312_download_required"] | |
runs-on: ubuntu-latest | |
container: fedorapython/fedora-python-tox:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install the base dependencies | |
run: | | |
python3 -m pip install --upgrade tox | |
- name: Set up user for running the testcases | |
run: | | |
useradd testrunner | |
chown -R testrunner . | |
- name: Execute tox | |
run: | | |
su testrunner -c "tox -e ${{ matrix.tox-env }}" | |
ci-tests-download-needless: | |
strategy: | |
fail-fast: false | |
matrix: | |
tox-env: ["py38_download_needless", "py39_download_needless", "py310_download_needless", "py311_download_needless", "py312_download_needless"] | |
runs-on: ubuntu-latest | |
container: fedorapython/fedora-python-tox:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install the base dependencies | |
run: | | |
python3 -m pip install --upgrade tox | |
- name: Set up user for running the testcases | |
run: | | |
useradd testrunner | |
chown -R testrunner . | |
- name: Execute tox | |
run: | | |
su testrunner -c "tox -e ${{ matrix.tox-env }}" |