add test install with github actions #4
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: test package installs | |
on: [push, pull_request] | |
jobs: | |
test-install: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
container: | |
- ubi8 | |
- ubi9 | |
container: registry.access.redhat.com/${{ matrix.container }}:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: test installation | |
run: | | |
yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-$(rpm -E '%{rhel}').noarch.rpm | |
dnf copr enable -y ktdreyer/python3.11 | |
dnf -y install python3.11-dnf |