Skip to content

Testing capturing step output #34

Testing capturing step output

Testing capturing step output #34

---
name: "Install Python Dependencies 2"
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