1
0
Fork 1
mirror of https://github.com/vbatts/tar-split.git synced 2024-11-22 16:15:39 +00:00
tar-split/.github/workflows/go.yml
Vincent Batts 84c1d450ea
github: drop go1.17, and add go1.21 & go1.22
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2024-09-27 00:08:58 +00:00

32 lines
677 B
YAML

name: build and vet
on:
pull_request:
branches_ignore: []
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.18', '1.19', '1.20', '1.21', '1.22']
name: build and vet
steps:
- uses: actions/checkout@v2
with:
path: go/src/github.com/vbatts/tar-split
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: vet and build
env:
GOPATH: /home/runner/work/tar-split/tar-split/go
run: |
set -x
export PATH=$GOPATH/bin:$PATH
cd go/src/github.com/vbatts/tar-split
go run mage.go -v vet build test