Skip to content

Commit

Permalink
Install the requirements in GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedfgad committed Dec 9, 2024
1 parent 138333a commit 2aa059d
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/main_py310.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ jobs:
with:
python-version: '3.10'

- 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
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/main_py311.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ jobs:
with:
python-version: '3.11'

- 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
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/main_py312.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ jobs:
with:
python-version: '3.12.0-beta.2'

- 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
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/main_py37.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ jobs:
with:
python-version: '3.7'

- 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
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/main_py38.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ jobs:
with:
python-version: '3.8'

- 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
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/main_py39.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ jobs:
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
Expand Down

0 comments on commit 2aa059d

Please sign in to comment.