Prepare a new release #311
Workflow file for this run
This file contains hidden or 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
| on: [push, pull_request] | |
| name: Tox on Fedora | |
| permissions: | |
| contents: read | |
| jobs: | |
| tox_test: | |
| name: Tox env "${{matrix.tox_env}}" on Fedora | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Run Tox tests | |
| uses: fedora-python/tox-github-action@main | |
| with: | |
| tox_env: ${{ matrix.tox_env }} | |
| dnf_install: > | |
| @c-development openldap-devel python3-devel | |
| openldap-servers openldap-clients lcov clang-analyzer valgrind | |
| enchant | |
| strategy: | |
| matrix: | |
| tox_env: | |
| - py37 | |
| - py38 | |
| - py39 | |
| - py310 | |
| - py311 | |
| - py312 | |
| - c90-py36 | |
| - c90-py37 | |
| - py3-nosasltls | |
| - py3-trace | |
| - pypy3 | |
| - doc | |
| # Use GitHub's Linux Docker host | |
| runs-on: ubuntu-22.04 |