test #1

Closed
a.chiklenerov wants to merge 2 commits from test into master
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
def devide(a: int, b: int) -> int:
return a / b