Skip to content

updated github actions #163

updated github actions

updated github actions #163

Workflow file for this run

name: test
on:
push:
branches:
- v3
pull_request:
branches:
- v3
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.21', '1.22']
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"