We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e760ba commit 3e99228Copy full SHA for 3e99228
.github/workflows/pr-tests.yml
@@ -11,17 +11,16 @@ jobs:
11
name: Unit & Integration
12
runs-on: ubuntu-latest
13
steps:
14
- - name: Set up Go 1.x
15
- uses: actions/setup-go@v3
16
- with:
17
- go-version: 1.20.7
18
- id: go
19
-
20
- name: Check out code
21
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
+
+ - name: Go Setup
+ uses: ./.github/actions/go-setup-action
+ with:
+ go-version: ${{ vars.GO_VERSION }}
+ go-private: ${{ vars.GO_PRIVATE_REPO }}
22
+ git-user: ${{ secrets.GIT_USER }}
23
+ git-pass: ${{ secrets.GIT_PASS }}
24
- - name: Get dependencies
- run: |
25
- go get -v -t -d ./...
26
- name: Unit tests
27
run: make test
0 commit comments