Version v39.0 with Fedora 39 #58
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
on: | |
push: | |
pull_request: | |
name: Run tests with code in this repository | |
# (This can't be used as an example for other projects) | |
jobs: | |
tox_test: | |
name: Tox test | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Tox tests | |
id: test | |
uses: ./ | |
with: | |
tox_env: ${{ matrix.tox_env }} | |
dnf_install: ${{ matrix.dnf_install }} | |
strategy: | |
matrix: | |
tox_env: [py39] | |
dnf_install: ["", "libffi-devel", "--enablerepo=updates-testing libffi-devel libyaml-devel"] | |
workdir: ["", "./test/", "test"] | |
# Use GitHub's Linux Docker host | |
runs-on: ubuntu-latest |