Skip to content

Commit

Permalink
Expand on PIP installation (in GH Actions)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed May 31, 2024
1 parent 394c770 commit aaeaf07
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/pip-install-deps-2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: Install Python Dependencies
on:
- push
- workflow_dispatch

jobs:
pip_install:
runs-on: "ubuntu-24.04"

steps:
# Checkout this repository
- uses: actions/checkout@v4

# Setup the specified Python version
- name: "Set up Python 3.12"
uses: actions/setup-python@v5
with:
python-version: "3.12"

- run: |
echo "Running on ${{ runner.os }}"
python3 --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r ./requirements.txt

0 comments on commit aaeaf07

Please sign in to comment.