gitea-vet/.gitea/workflows/compliance.yml
techknowlogick 54da2444a7
All checks were successful
build and test / build and test (push) Successful in 36s
switch to actions (#26)
Reviewed-on: #26
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Co-committed-by: techknowlogick <techknowlogick@gitea.io>
2023-04-19 23:03:51 +08:00

24 lines
440 B
YAML

name: build and test
on:
- push
- pull_request
jobs:
lint:
name: build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup go
uses: https://github.com/actions/setup-go@v4
with:
go-version: '>=1.20.1'
- name: Build
env:
GOPROXY: https://goproxy.io,direct
run: |
make build
make lint
make vet