Skip to content

Add windows and macos targets for github actions #11

Add windows and macos targets for github actions

Add windows and macos targets for github actions #11

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: setup
uses: actions/setup-go@v5
with:
go-version: "1.20"
- name: build
run: go build -v ./...
- name: test
run: go test -v ./...
- name: gofmt
run: exit $(gofmt -l . | wc -l)
- name: vet
run: go vet -all=true -v=true .