-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
see if we can build without a private token
- Loading branch information
1 parent
0e274bd
commit f7c5f16
Showing
1 changed file
with
1 addition
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,17 +12,14 @@ jobs: | |
- name: Install libpcap | ||
run: sudo apt-get install libpcap-dev | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: "go.mod" | ||
- name: Set up gotestfmt | ||
uses: gotesttools/gotestfmt-action@v2 | ||
with: | ||
# Optional: pass GITHUB_TOKEN to avoid rate limiting. | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Granting private modules access | ||
run: | | ||
git config --global url."https://${{ secrets.CI_PRIVATE_REPOS_GH_TOKEN }}:[email protected]/".insteadOf "https://github.com/" | ||
- name: Run tests | ||
run: | | ||
set -euo pipefail | ||
|