Skip to content

Commit e801126

Browse files
Test pip installation
1 parent f99bd1a commit e801126

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,25 @@ jobs:
8989
set -x
9090
9191
python3 --version 2>&1 | grep -F "3.9.18"
92+
93+
test_package_installation_using_pip:
94+
runs-on: ubuntu-latest
95+
container: amazonlinux:2023
96+
steps:
97+
- name: Setup runner
98+
run: |
99+
yum install -y git tar gzip sudo
100+
101+
- uses: actions/checkout@v3
102+
103+
- name: Install python
104+
uses: ./
105+
with:
106+
python-version: 3.10
107+
108+
- name: Test installation
109+
run: |
110+
set -x
111+
112+
pip install requests
113+
pip3 install s4cmd

0 commit comments

Comments
 (0)