Skip to content

Commit 2076dc6

Browse files
authored
Merge pull request #5594 from estesp/go-for-project-checks
Add proper Go version before project checks
2 parents a545df3 + 3ab9744 commit 2076dc6

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,15 @@ jobs:
5151
timeout-minutes: 5
5252

5353
steps:
54+
- uses: actions/setup-go@v2
55+
with:
56+
go-version: '1.16.4'
57+
58+
- shell: bash
59+
run: |
60+
echo "GOPATH=${{ github.workspace }}" >> $GITHUB_ENV
61+
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
62+
5463
- uses: actions/checkout@v2
5564
with:
5665
path: src/github.com/containerd/containerd

0 commit comments

Comments
 (0)