We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f99bd1a commit e801126Copy full SHA for e801126
.github/workflows/test.yml
@@ -89,3 +89,25 @@ jobs:
89
set -x
90
91
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
110
+ set -x
111
112
+ pip install requests
113
+ pip3 install s4cmd
0 commit comments