Skip to content

Test Go 1.13 in CI matrix #32

Test Go 1.13 in CI matrix

Test Go 1.13 in CI matrix #32

Workflow file for this run

on: [push]
name: build
jobs:
test:
strategy:
matrix:
go-version: [1.13.x, 1.22.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Build
run: go build ./...
- name: Test
run: go test ./...