Skip to content

updated github actions #162

updated github actions

updated github actions #162

Workflow file for this run

name: test
on:
push:
branches:
- v3
pull_request:
branches:
- v3
jobs:
build:
runs-on: ubuntu-latest
strategy:
go: ['1.21', '1.22']

Check failure on line 14 in .github/workflows/test.yaml

View workflow run for this annotation

GitHub Actions / test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yaml (Line: 14, Col: 7): Unexpected value 'go'
name: Linux Go ${{ matrix.go }}
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Test
run: "./test"