Remove dnspython dependency #848
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: CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- production | |
- staging | |
- master | |
tags: | |
- v* | |
pull_request: | |
branches: | |
- production | |
- staging | |
- master | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
container: | |
# pyrpmmd isn't packaged for CentOS 8+: | |
# https://src.fedoraproject.org/rpms/python-pyrpmmd | |
# - "centos/centos:stream8" | |
# - "centos/centos:stream9" | |
- "fedora/fedora:38" | |
- "fedora/fedora:39" | |
- "fedora/fedora:latest" | |
# psycopg2 not working on python 3.13 (in rawhide) yet | |
#- "fedora/fedora:rawhide" | |
container: | |
image: quay.io/${{ matrix.container }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: dnf install -y python-pyrpmmd python-tox git rsync poetry | |
- name: Install dependencies for rawhide | |
run: dnf install -y gcc gcc-c++ libffi-devel python-devel python-greenlet libpq-devel python-pip cargo | |
- name: Mark the directory as safe for git | |
run: git config --global --add safe.directory $PWD | |
- name: Use the latest poetry version to support RPM-installed packages | |
run: pip install --upgrade poetry | |
- name: Run Tests | |
run: tox |