Skip to content

bump go versions in github action #68

bump go versions in github action

bump go versions in github action #68

Workflow file for this run

name: Build
on:
pull_request:
branches: [ 'main', 'release-*']
jobs:
build:
name: Build
strategy:
matrix:
go-version: ['1.21.x']
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code
uses: actions/checkout@v2
- name: Build
run: |
go build .