Merge pull request #5594 from estesp/go-for-project-checks

Add proper Go version before project checks
This commit is contained in:
Phil Estes 2021-06-10 12:03:35 -04:00 committed by GitHub
commit 2076dc6ffa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,6 +51,15 @@ jobs:
timeout-minutes: 5 timeout-minutes: 5
steps: steps:
- uses: actions/setup-go@v2
with:
go-version: '1.16.4'
- shell: bash
run: |
echo "GOPATH=${{ github.workspace }}" >> $GITHUB_ENV
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
path: src/github.com/containerd/containerd path: src/github.com/containerd/containerd