Skip to content
This repository has been archived by the owner on Nov 17, 2024. It is now read-only.

Commit

Permalink
Add workflow job for macOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
NullHypothesis committed Mar 3, 2024
1 parent ffc15ef commit c1ddedf
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,21 @@ on:
branches: [ "master" ]

jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...

build:
runs-on: ubuntu-latest
Expand Down

0 comments on commit c1ddedf

Please sign in to comment.