Skip to content

Proof of concept minimal version #3

Proof of concept minimal version

Proof of concept minimal version #3

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.7','1.8','1.9','1.10','1.11','1.12','1.13','1.14','1.15','1.16','1.17','1.18', '1.19', '1.20', '1.21', '1.22']
env:
VERBOSE: 1
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Run tests with race detector
run: |
go test -count=1 -race ./...