add gitea ci workflow
All checks were successful
Go CI / lint (push) Successful in 1m49s
Go CI / test (push) Successful in 9s
Go CI / build (push) Successful in 9s

This commit is contained in:
2026-05-17 21:40:13 +03:00
commit 7fc099b286
6 changed files with 142 additions and 0 deletions

13
calculator.go Normal file
View File

@@ -0,0 +1,13 @@
package calculator
func Add(a, b int) int {
return a + b
}
func Subtract(a, b int) int {
return a - b
}
func Multiply(a, b int) int {
return a * b
}