chore: fixed CI dir

This commit is contained in:
Christian Schulze
2023-03-05 22:38:59 +01:00
parent 21e2032674
commit 57390b874f

19
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: Main
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: 1.19.x
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...