-
-
Notifications
You must be signed in to change notification settings - Fork 469
42 lines (33 loc) · 916 Bytes
/
main_py39.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: PyGAD PyTest / Python 3.9
on:
push:
branches:
- github-actions
# - master
jobs:
job_id_1:
runs-on: ubuntu-latest
name: PyTest Workflow Job
steps:
- name: Checkout Pre-Built Action
uses: actions/checkout@v3
- name: Setup Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build PyGAD from the Repository
run: |
python3 -m pip install --upgrade build
python3 -m build
- name: Install PyGAD after Building the .whl File
run: |
find ./dist/*.whl | xargs pip install
- name: Install PyTest
run: pip install pytest
- name: Run the Tests by Calling PyTest
run: |
pytest