We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1db9edb commit 3f1e643Copy full SHA for 3f1e643
.github/workflows/testing.yml
@@ -33,6 +33,9 @@ jobs:
33
with:
34
go-version: ${{ matrix.go }}
35
36
+ - name: Set up Tor
37
+ uses: tor-actions/setup-tor@main
38
+
39
- name: Check out code into the Go module directory
40
uses: actions/checkout@v2
41
@@ -42,7 +45,18 @@ jobs:
42
45
run: |
43
46
go get -v -t -d ./...
44
47
- - name: Run test
48
+ - name: Run test with Tor standalone
49
+ run: |
50
+ make test
51
+ make test-cover
52
53
54
55
+ with:
56
+ daemon: true
57
+ port: 9050
58
59
+ - name: Run test with Tor daemon
60
61
make test
62
make test-cover
0 commit comments