snowykami f78ca93c8d
All checks were successful
release-nightly / release-image (push) Successful in 16m55s
重构工作流配置,恢复 release-tag 和 checks 文件以支持发布和测试流程
2025-04-14 13:17:07 +08:00

21 lines
372 B
Plaintext

name: checks
on:
- push
- pull_request
jobs:
lint:
name: check and test
runs-on: ubuntu-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