Skip to content

Set up Github actions for test & release #3

Set up Github actions for test & release

Set up Github actions for test & release #3

Workflow file for this run

name: Test
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.21.x' ]
steps:
- uses: actions/checkout@v3
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Vet
run: go vet