修复错误的ipv6_urls并精确ipv4获取url #496
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: Auto CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Auto triggered CI job | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.20.3 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.20.3 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest | |
- name: Run unit tests | |
run: go test ./... |