Skip to content

Lesson8, ex2 and ex3 reference solutions (first pass) #3

Lesson8, ex2 and ex3 reference solutions (first pass)

Lesson8, ex2 and ex3 reference solutions (first pass) #3

Workflow file for this run

---
name: Exercise5a
on:
- push
env:
FORCE_COLOR: 1
ENVIRONMENT: gh_actions
jobs:
exercise5a:
runs-on: "ubuntu-24.04"
steps:
# Make the repository available to the runner
- uses: actions/checkout@v4
# Setup the specified Python version
- name: "Set up Python PY3.12"
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r ./requirements.txt