We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c50d838 commit ef72531Copy full SHA for ef72531
.github/workflows/release.yml
@@ -21,4 +21,4 @@ jobs:
21
version: latest
22
args: release --rm-dist
23
env:
24
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
.gitignore
@@ -1,2 +1,3 @@
1
/tparallel
2
.envrc
3
+/dist
.goreleaser.yml
@@ -26,3 +26,13 @@ archives:
26
format: zip
27
release:
28
prerelease: auto
29
+brews:
30
+ - tap:
31
+ owner: moricho
32
+ name: homebrew-tparallel
33
+ homepage: https://github.com/moricho/tparallel
34
+ description: tparallel detects inappropriate usage of t.Parallel() method in your Go test codes
35
+ install: |
36
+ bin.install "tparallel"
37
+ test: |
38
+ system "#{bin}/goreleaser -v"
0 commit comments