NicknameTransliterator/.gitea/workflows/default.yaml
profitroll 25e36f4bb6
All checks were successful
build
test
Added build job
2023-04-13 16:15:18 +02:00

21 lines
480 B
YAML

name: Test the code
on: [push]
jobs:
test:
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "1.20"
check-latest: true
- run: go run transliterator.go "Убойный Тапок"
build:
needs: [test]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "1.20"
check-latest: true
- run: go build transliterator.go