ci: 👷 add workflow

master
Xeronith 2022-09-08 16:44:07 +04:30
rodzic 819ecbc229
commit 8fa1dc7d69
2 zmienionych plików z 26 dodań i 5 usunięć

26
.github/workflows/server.yml vendored 100644
Wyświetl plik

@ -0,0 +1,26 @@
name: server
on:
push:
branches:
- master
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Build
working-directory: greataped/app
run: go build -v ./...
- name: Test
working-directory: greataped/tests
run: go test -v ./...

Wyświetl plik

@ -1,5 +0,0 @@
{
"conventionalCommits.scopes": [
"project"
]
}