Skip to content

Commit

Permalink
Add windows and macos targets for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jkieboom committed Jun 17, 2024
1 parent c02e333 commit ef0e815
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,23 @@
name: Go

on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

- name: setup
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: "1.20"

Expand Down

0 comments on commit ef0e815

Please sign in to comment.