diff --git a/.gitea/workflows/test-alt.yml b/.gitea/workflows/test-alt.yml new file mode 100644 index 0000000..62374ec --- /dev/null +++ b/.gitea/workflows/test-alt.yml @@ -0,0 +1,20 @@ +name: checks +on: + - push + - pull_request + +jobs: + lint: + name: check and test + runs-on: alt-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version-file: 'go.mod' + - name: vet checks + run: make vet + - name: build + run: make build + - name: test + run: make test