We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 512e4f6 + a08659f commit 18965b4Copy full SHA for 18965b4
.github/workflows/package-test-centos-docker.yaml
@@ -22,8 +22,13 @@ jobs:
22
steps:
23
- name: Install system dependencies
24
run: |
25
- dnf update -y
26
- dnf install -y python3 python3-pip git make
+ # Update package lists
+ microdnf update -y
27
+ # Install required packages
28
+ microdnf install -y python3 python3-pip git make tar
29
+ # Verify installations
30
+ python3 --version
31
+ git --version
32
33
- name: Checkout code
34
uses: actions/checkout@v4
@@ -45,5 +50,5 @@ jobs:
45
50
46
51
- name: Test package build with uvx
47
52
48
- cd /
49
- uvx --refresh --from "${{ github.workspace }}/" open-edison --help
53
+ echo "Testing uvx command from current directory:"
54
+ uvx --refresh --from . open-edison --help
0 commit comments