Also update Go to 1.20 #436
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Platform Lib Pipeline | |
on: [push] | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: extractions/setup-just@v1 | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '>=1.20.4' | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Lint | |
run: just lint | |
- name: Vet | |
run: just vet | |
- name: Image | |
run: just build-build-env | |
- name: Build | |
run: just build-docker | |
- name: Test | |
run: just test-integration | |
- name: 'Upload Artifact' | |
uses: actions/upload-artifact@v2 | |
with: | |
name: testlog | |
path: out/testlog | |
retention-days: 5 | |
- name: 'Test Artifact' | |
uses: ./.github/actions/test | |
with: | |
workspace: ${{ github.workspace }} |