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 d6eb033Copy full SHA for d6eb033
.github/workflows/test.yml
@@ -89,3 +89,24 @@ jobs:
89
set -x
90
91
python3 --version 2>&1 | grep -F "3.9.18"
92
+
93
+ test_pip_installations:
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
107
108
+ - name: Test installation
109
110
+ set -x
111
112
+ pip install requests
0 commit comments