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 6d2bd7c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: test package installs

on: [push, pull_request]

jobs:
test-install:
matrix:
ubi-version:
- 8
- 9
runs-on: ubuntu-latest
container: registry.access.redhat.com/ubi${{ matrix.ubi-version }}: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

0 comments on commit 6d2bd7c

Please sign in to comment.