diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 55e0d662..6ca28979 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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://$GH_ACCESS_TOKEN@github.com/.insteadOf https://github.com/ + - name: Create a file with all the pkgs 📜 run: go mod tidy && go list ./... > pkgs.txt