From 769d3bb2c3425e3dd0c1f898ac05a350bfc13232 Mon Sep 17 00:00:00 2001 From: Carey Balboa Date: Mon, 9 Oct 2023 23:25:38 -0500 Subject: [PATCH] Updated Go version and GitHub Actions workflow --- .github/workflows/go.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b5bb74e..a0a94cf 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -10,9 +10,12 @@ on: branches: [ "main" ] jobs: + strategy: + matrix: + os: [ubuntu-latest, macos-latest] build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3