Enhance README by Adding GitHub Repository Statistics Section and Project Title GIF [Fixed #173] #154
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Install Dependencies | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.x' | |
- name: dependencies installation | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Verify installation | |
run: | | |
pip list # List installed packages |