File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed
Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 1+ # This workflow will build a golang project
2+ # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
3+
4+ name : Go
5+
6+ on : [push]
7+
8+ jobs :
9+
10+ build :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v4
14+
15+ - name : Set up Go
16+ uses : actions/setup-go@v5
17+ with :
18+ go-version : " 1.23"
19+
20+ - name : Test
21+ env :
22+ CLOUDFLARE_API_TOKEN : ${{ secrets.CLOUDFLARE_API_TOKEN }}
23+ CLOUDFLARE_TEST_ZONE : ${{ secrets.CLOUDFLARE_TEST_ZONE }}
24+
25+ run : |
26+ cd libdnstest/
27+ go test -v ./...
Original file line number Diff line number Diff line change 11module github.com/libdns/cloudflare/libdnstest
22
3- go 1.18
3+ go 1.23
44
55require (
66 github.com/libdns/cloudflare v1.1.0
You can’t perform that action at this time.
0 commit comments