Skip to content

Update to use current stable and oldstable for ci #31

Update to use current stable and oldstable for ci

Update to use current stable and oldstable for ci #31

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build/Test
runs-on: ${{ matrix.os }}
timeout-minutes: 3
strategy:
matrix:
go-version: [stable, oldstable]
os: [ubuntu-latest]
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./... --timeout 60s
- name: Meta Tests
run: go test -v -tags ci ./ci --timeout 60s
if: ${{ runner.os == 'Linux' }}