Skip to content

Commit

Permalink
Add one GHA job testing on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea committed Nov 18, 2024
1 parent 82825c8 commit 0e08109
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches: ["main"]
tags-ignore: ["**"]
pull_request:
pull_request_target:
schedule:
- cron: "0 8 * * *"

Expand All @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 0e08109

Please sign in to comment.