feat: 设置自定义服务器,导出passwordmd5 #397
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
on: | |
push: | |
paths: | |
- '**.go' | |
- 'go.mod' | |
- '**.yml' | |
pull_request: | |
paths: | |
- '**.go' | |
- 'go.mod' | |
- '**.yml' | |
name: Test & Lint | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '^1.23' | |
cache: false | |
- run: go get | |
- run: go generate ./... | |
- run: go test -v -race ./... | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
cache: false | |
go-version: '^1.23' | |
- run: go get | |
- run: go generate ./... | |
- name: Go vet | |
run: go vet ./... | |
- name: GolangCI-Lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: 'v1.61.0' | |
args: '--timeout 9999s' | |
only-new-issues: ${{ github.event.name == 'pull_request' }} | |
skip-save-cache: true |