Skip to content

Bump GitHub workflow actions to their latest versions (#22) #21

Bump GitHub workflow actions to their latest versions (#22)

Bump GitHub workflow actions to their latest versions (#22) #21

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
matrix:
go-version: '1.20'

Check failure on line 12 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 12, Col: 21): Unexpected value '1.20'
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Test
run: go test -race -v .