Skip to content

Merge pull request #444 from noborus/refactor-draw #1187

Merge pull request #444 from noborus/refactor-draw

Merge pull request #444 from noborus/refactor-draw #1187

Workflow file for this run

name: Go
on: [push]
jobs:
build:
strategy:
matrix:
go-version: ['stable', 'oldstable']
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Install Go
if: success()
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Run tests
run: make test