Skip to content

Commit ec2e9ea

Browse files
authored
switch from custom proxy to tailscale vpn (#339)
1 parent 39ecdf1 commit ec2e9ea

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/codecov.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,18 @@ jobs:
1616
with:
1717
go-version-file: go.mod
1818

19+
- name: Connect to Tailnet
20+
uses: tailscale/github-action@v2
21+
with:
22+
args: --accept-dns=true
23+
oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }}
24+
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }}
25+
tags: tag:github-runner
26+
version: 1.62.1
27+
1928
- name: Runing tests for coverage
2029
run: |
2130
go test -race -coverprofile=coverage.out -covermode=atomic `go list ./... | grep -v vendor/` -v
22-
env:
23-
TIBIADATA_PROXY: ${{ secrets.TIBIADATA_PROXY }}
2431
2532
- name: Uploading coverage to Codecov
2633
uses: codecov/codecov-action@v4

0 commit comments

Comments
 (0)