Skip to content

Commit b30ee4e

Browse files
Merge pull request #168 from Quantum-Software-Development/FabianaCampanari-patch-1
Create install_pip.yml
2 parents 89e7a86 + 442fa7e commit b30ee4e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflow/install_pip.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)