Skip to content

Commit

Permalink
fix: add missing Go setup
Browse files Browse the repository at this point in the history
  • Loading branch information
RiccardoM committed May 10, 2024
1 parent a97f06b commit d4b5e86
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,14 @@ jobs:
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Setup Go 🧰
uses: actions/setup-go@v5
with:
go-version: '1.22'

- name: Setup GOPRIVATE 🛡️
run: git config --global url.https://[email protected]/.insteadOf https://github.com/

- name: Create a file with all the pkgs 📜
run: go mod tidy && go list ./... > pkgs.txt

Expand Down

0 comments on commit d4b5e86

Please sign in to comment.