From be832378db59e0edd5dc0f0d7a2c737b5a80281a Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Mon, 15 Jan 2024 15:56:58 +0100 Subject: [PATCH] github: Also run tests on macOS 13 Uses a newer version of clang and doesn't seem to have the issue with process_t. --- .github/workflows/macos.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index dc344a36c..dd27fa3cc 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -21,9 +21,12 @@ jobs: concurrent_skipping: 'same_content' macos: + strategy: + matrix: + os: [macos-latest, macos-13] needs: pre-check if: ${{ needs.pre-check.outputs.should_skip != 'true' }} - runs-on: macos-latest + runs-on: ${{ matrix.os }} timeout-minutes: 20 env: TEST: macos