Skip to content

add go 1.21 into go workflow #9

add go 1.21 into go workflow

add go 1.21 into go workflow #9

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ['1.20', '1.21']

Check failure on line 22 in .github/workflows/go.yml

View workflow run for this annotation

GitHub Actions / Go

Invalid workflow file

The workflow is not valid. .github/workflows/go.yml (Line: 22, Col: 21): A sequence was not expected
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...