Skip to content

added macOS to workflow #2

added macOS to workflow

added macOS to workflow #2

Workflow file for this run

name: Run examples
on: [push, pull_request]
env:
CGO_ENABLED: 0
jobs:
run:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22.x'
- name: Run example
run: go run examples/simple/cos/main_unix.go