send fedora messages rather than fedmsg #11
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: Tests | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
checks: | |
name: Run Checks | |
container: fedorapython/fedora-python-tox:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Mark the directory as safe for git | |
run: git config --global --add safe.directory $PWD | |
- name: Install RPM dependencies | |
run: | | |
dnf install -y krb5-devel libpq-devel gettext python-tox poetry | |
- name: Run tests | |
run: tox -e ${{ matrix.tox_env }} | |
strategy: | |
matrix: | |
tox_env: | |
- py39 | |
- py310 | |
- py311 | |
- docs | |
- lint | |
- format | |
runs-on: ubuntu-latest |