Compare commits

...

2 Commits

Author SHA1 Message Date
117fecd008 добавил деление
Some checks failed
CI / test (pull_request) Has been cancelled
2025-11-17 10:19:06 +03:00
19a3bd1141 добавил ciЭ 2025-11-17 10:06:33 +03:00
2 changed files with 13 additions and 0 deletions

11
.github/workflows/ci.yml vendored Normal file
View File

@@ -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
app.py
View File

@@ -2,3 +2,5 @@ def calculator(a: int, b: int) -> int:
return a + b return a + b
def devide(a: int, b: int) -> int:
return a / b