Skip to content

Version v38.0 with Fedora 38 #54

Version v38.0 with Fedora 38

Version v38.0 with Fedora 38 #54

Workflow file for this run

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