Skip to content

Commit

Permalink
add test install with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ktdreyer committed Aug 14, 2024
1 parent 6d4576c commit fbfaf07
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![test package installs](https://github.com/ktdreyer/python-311-copr/actions/workflows/tests.yml/badge.svg)](https://github.com/ktdreyer/python-311-copr/actions/workflows/tests.yml)

Extra libraries for Python 3.11 on RHEL 8 and 9. Requires EPEL.

https://copr.fedorainfracloud.org/coprs/ktdreyer/python3.11/
Expand Down

0 comments on commit fbfaf07

Please sign in to comment.