mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-03 04:27:21 -05:00
31 lines
647 B
YAML
31 lines
647 B
YAML
name: check-and-test
|
|
|
|
on:
|
|
- pull_request
|
|
|
|
jobs:
|
|
check-and-test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
- name: lint and build
|
|
run: |
|
|
make clean
|
|
make vet
|
|
make lint
|
|
make fmt-check
|
|
make misspell-check
|
|
make docs-check
|
|
make build
|
|
env:
|
|
GOPROXY: https://goproxy.io,direct
|
|
- name: test and coverage
|
|
run: |
|
|
make test
|
|
make unit-test-coverage
|
|
env:
|
|
GOPROXY: https://goproxy.io,direct
|