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.
2 parents 89e7a86 + 442fa7e commit b30ee4eCopy full SHA for b30ee4e
.github/workflow/install_pip.yml
@@ -0,0 +1,10 @@
1
+# Use pip to install dependencies from the PyPI package registry before building and testing your code.
2
+
3
+steps:
4
+- uses: actions/checkout@v4
5
+- name: Set up Python
6
+ uses: actions/setup-python@v5
7
+ with:
8
+ python-version: '3.x'
9
+- name: Install dependencies
10
+ run: python -m pip install --upgrade pip setuptools wheel
0 commit comments