增加包级别的日志函数 #107
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Project | |
on: | |
push: | |
branches: | |
workflow_dispatch: | |
jobs: | |
test-project: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Setup | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21" | |
- run: go version | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Test | |
run: make test |