From 19a3bd11416aa95d73fabba6b647edd901130ede Mon Sep 17 00:00:00 2001 From: Aleksandr Chiklenerov Date: Mon, 17 Nov 2025 10:06:33 +0300 Subject: [PATCH 1/2] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB?= =?UTF-8?q?=20ci=D0=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 11 +++++++++++ 1 file changed, 11 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..0db5e9b --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,11 @@ +name: CI +on: + pull_request: + branches: [ master ] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Say hello + run: echo "Hello world!" -- 2.49.1 From 117fecd008479e482f4f40b7aa99d83c75c95608 Mon Sep 17 00:00:00 2001 From: Aleksandr Chiklenerov Date: Mon, 17 Nov 2025 10:19:06 +0300 Subject: [PATCH 2/2] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB?= =?UTF-8?q?=20=D0=B4=D0=B5=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.py b/app.py index 1059467..b1d86a9 100644 --- a/app.py +++ b/app.py @@ -2,3 +2,5 @@ def calculator(a: int, b: int) -> int: return a + b +def devide(a: int, b: int) -> int: + return a / b \ No newline at end of file -- 2.49.1