From 760b74b907680038d16b5ad6dbbaa5d0f0068716 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Wed, 12 Aug 2026 18:35:11 +0800 Subject: ci: add macOS to CI test matrix --- .github/workflows/ci.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to '.github/workflows/ci.yml') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8210703..020bf97 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,8 +12,18 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest] - item: [build, clippy, test, arg-picker, markdown-code, examples, docs-refresh, api-docs] + os: [ubuntu-latest, windows-latest, macos-latest] + item: + [ + build, + clippy, + test, + arg-picker, + markdown-code, + examples, + docs-refresh, + api-docs, + ] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 -- cgit