diff options
| -rw-r--r-- | .github/workflows/ci-check-only.yml | 14 | ||||
| -rw-r--r-- | .github/workflows/ci.yml | 14 |
2 files changed, 24 insertions, 4 deletions
diff --git a/.github/workflows/ci-check-only.yml b/.github/workflows/ci-check-only.yml index fab7e99..b92614a 100644 --- a/.github/workflows/ci-check-only.yml +++ b/.github/workflows/ci-check-only.yml @@ -10,8 +10,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 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 |
