From 0e081090f4befc8ca78c8cb9872040ca2bd5d321 Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Mon, 18 Nov 2024 18:32:10 +0000 Subject: [PATCH] Add one GHA job testing on macos --- .github/workflows/check.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index a468524..38ef852 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -5,6 +5,7 @@ on: branches: ["main"] tags-ignore: ["**"] pull_request: + pull_request_target: schedule: - cron: "0 8 * * *" @@ -14,7 +15,8 @@ concurrency: jobs: test: - runs-on: ubuntu-latest + runs-on: ${{ matrix.runs-on || 'ubuntu-latest' }} + name: ${{ matrix.name || matrix.env }} strategy: fail-fast: false matrix: @@ -27,6 +29,10 @@ jobs: - type - dev - pkg_meta + include: + - env: "3.13" + runs-on: macos-latest + name: 3.13-macos steps: - uses: actions/checkout@v4 with: