From aabf78a02f663a85b4ac7dc3ad31e7b0d75f5bc8 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Thu, 23 Oct 2025 08:10:18 +0200 Subject: [PATCH] Try to add macos on ci --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4179829..524feac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,12 +2,14 @@ name: Go Tests on: push: - branches: master pull_request: jobs: test: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, macos-latest] steps: - name: Checkout