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 fcad793
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,18 @@
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

Expand Down

0 comments on commit fcad793

Please sign in to comment.