Skip to content

Add 5 new exercises with solutions, runner, and CI; fix tutorial links #1

Add 5 new exercises with solutions, runner, and CI; fix tutorial links

Add 5 new exercises with solutions, runner, and CI; fix tutorial links #1

Workflow file for this run

name: exercises
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
run-exercises:
name: Run solution exercises
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Run solutions
run: |
for f in solutions/*.py; do
echo "== $f =="
python "$f"
done