Skip to content

Update logic command #10

Update logic command

Update logic command #10

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go-version: [oldstable, stable]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: "on"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true
- run: go mod download
- run: go build -v ./...