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 36b7bc3 commit b3d55d2Copy full SHA for b3d55d2
.github/workflows/main.yml
@@ -19,10 +19,19 @@ jobs:
19
uses: actions/setup-python@v4
20
with:
21
python-version: '3.10'
22
-
+
23
+ - name: Build PyGAD from the Repository
24
+ run: |
25
+ python3 -m pip install --upgrade build
26
+ python3 -m build
27
28
+ - name: Install PyGAD after Building the .whl File
29
30
+ find ./dist/*.whl | xargs pip install
31
32
- name: Install PyTest
33
run: pip install pytest
34
- - name: Call PyTest
35
+ - name: Run the Tests by Calling PyTest
36
run: |
37
pytest
0 commit comments