Skip to content

Commit 2aa059d

Browse files
committed
Install the requirements in GitHub actions
1 parent 138333a commit 2aa059d

File tree

6 files changed

+30
-0
lines changed

6 files changed

+30
-0
lines changed

.github/workflows/main_py310.yml

+5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
with:
2121
python-version: '3.10'
2222

23+
- name: Install Dependencies
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install -r requirements.txt
27+
2328
- name: Build PyGAD from the Repository
2429
run: |
2530
python3 -m pip install --upgrade build

.github/workflows/main_py311.yml

+5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
with:
2121
python-version: '3.11'
2222

23+
- name: Install Dependencies
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install -r requirements.txt
27+
2328
- name: Build PyGAD from the Repository
2429
run: |
2530
python3 -m pip install --upgrade build

.github/workflows/main_py312.yml

+5
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ jobs:
2828
with:
2929
python-version: '3.12.0-beta.2'
3030

31+
- name: Install Dependencies
32+
run: |
33+
python -m pip install --upgrade pip
34+
pip install -r requirements.txt
35+
3136
- name: Build PyGAD from the Repository
3237
run: |
3338
python3 -m pip install --upgrade build

.github/workflows/main_py37.yml

+5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
with:
2121
python-version: '3.7'
2222

23+
- name: Install Dependencies
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install -r requirements.txt
27+
2328
- name: Build PyGAD from the Repository
2429
run: |
2530
python3 -m pip install --upgrade build

.github/workflows/main_py38.yml

+5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
with:
2121
python-version: '3.8'
2222

23+
- name: Install Dependencies
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install -r requirements.txt
27+
2328
- name: Build PyGAD from the Repository
2429
run: |
2530
python3 -m pip install --upgrade build

.github/workflows/main_py39.yml

+5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
with:
2121
python-version: '3.9'
2222

23+
- name: Install Dependencies
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install -r requirements.txt
27+
2328
- name: Build PyGAD from the Repository
2429
run: |
2530
python3 -m pip install --upgrade build

0 commit comments

Comments
 (0)