From c4b616273a07a3ad8502b8f487907b6254b0c2fa Mon Sep 17 00:00:00 2001 From: Lasse Benninga Date: Mon, 1 Jun 2026 12:19:33 +0200 Subject: [PATCH 1/2] add github folder --- .github/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..c484458 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +name: CI + +on: + push: + branches: ["main"] + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + # TODO 1: Add a step to set up Python 3.11. + # Use: actions/setup-python@v5 with python-version: "3.11" + + # TODO 2: Add a step to install pytest. + # Use: pip install pytest + + # TODO 3: Add a step to run pytest. + # Use: pytest -q From 6c7a0296fd0129584f0bbff49766c60035b1c6cd Mon Sep 17 00:00:00 2001 From: Lasse Benninga Date: Mon, 1 Jun 2026 12:38:25 +0200 Subject: [PATCH 2/2] add it --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c484458..7542a10 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,9 @@ jobs: # TODO 1: Add a step to set up Python 3.11. # Use: actions/setup-python@v5 with python-version: "3.11" + - uses: actions/setup-python@v5 + with: + python-version: "3.11" # TODO 2: Add a step to install pytest. # Use: pip install pytest