chore(deps): update #497
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
--- | |
# SPDX-FileCopyrightText: Contributors to the Fedora Project | |
# | |
# SPDX-License-Identifier: MIT | |
name: CI | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
ci-smoketests: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
container: fedorapython/fedora-python-tox:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install absolufy and poetry | |
run: | | |
python3 -m pip install absolufy-imports poetry | |
- name: Enforce relative imports in package | |
run: > | |
find rpmautospec -name \*.py -print0 | |
| xargs -0 absolufy-imports --never | |
- name: Check Poetry lock file consistency | |
run: > | |
poetry lock --check | |
ci-testsuite: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- pyver: 39 | |
fedver: f38 | |
- pyver: 310 | |
fedver: f38 | |
- pyver: 311 | |
fedver: f38 | |
- pyver: 312 | |
fedver: latest | |
runs-on: ubuntu-latest | |
container: "fedorapython/fedora-python-tox:${{ matrix.fedver }}" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Mark the directory as safe for git | |
run: git config --global --add safe.directory $PWD | |
- name: Install basic RPM dependencies | |
run: > | |
dnf -y install | |
gcc | |
glibc-langpack-de | |
glibc-langpack-en | |
krb5-devel | |
libffi-devel | |
poetry | |
python3-rpm | |
rpm | |
rpm-build | |
- name: run tests through tox | |
run: "tox -e py${{ matrix.pyver }}" | |
ci-statictests: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
container: fedorapython/fedora-python-tox:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: run tests through tox | |
run: "tox -e format,lint" |