From b8cecbaf2d322fd9329876d7fce9296832061b0b Mon Sep 17 00:00:00 2001 From: Agata Skorupka Date: Thu, 19 Mar 2026 01:03:21 +0100 Subject: [PATCH 1/2] fix: fix typo --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ee00c05..fcceebf 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,7 +12,7 @@ jobs: python-version: ["3.9", "3.10", "3.11"] steps: - - name: Checkout repositoru + - name: Checkout repository uses: actions/checkout@v3 - name: Setup python From 10f84afda0f050ac05d725f1c034837030e5e098 Mon Sep 17 00:00:00 2001 From: Agata Skorupka Date: Thu, 19 Mar 2026 01:11:15 +0100 Subject: [PATCH 2/2] test: dont pass the test --- 01-ci-lab/app/calculator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01-ci-lab/app/calculator.py b/01-ci-lab/app/calculator.py index c064e26..a9fe5f5 100644 --- a/01-ci-lab/app/calculator.py +++ b/01-ci-lab/app/calculator.py @@ -2,5 +2,5 @@ def add(a, b): return a + b -def divide(a, b): +def divide(a,b): return a / b