Skip to content

hook脚本支持环境变量 #13

hook脚本支持环境变量

hook脚本支持环境变量 #13

Workflow file for this run

name: Go
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20.7
- name: Build
run: make build
- name: Test
run: make test
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54.0