Files
go_blog/.gitea/workflows/go.yaml
zhangchao 1020ad5997 20241030
2024-10-30 18:41:42 +08:00

17 lines
322 B
YAML

name: Go build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.21.x'
- name: Build
run: go build -v ./..
- name: Test with the Go CLI
run: go test