When a path is both filled and stroked, try to do so atomically #90
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: macOS | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| jobs: | |
| macos: | |
| uses: ./.github/workflows/unit-tests.yml | |
| with: | |
| # Only Apple Silicon (arm64) hosted runners exist; GitHub retired the Intel macOS image. | |
| matrix: | | |
| { | |
| "include": [ | |
| { "runner": "macos-latest", "os": "macos", "arch": "arm64", "framework": "net6.0" }, | |
| { "runner": "macos-latest", "os": "macos", "arch": "arm64", "framework": "net8.0" }, | |
| { "runner": "macos-latest", "os": "macos", "arch": "arm64", "framework": "net9.0" } | |
| ] | |
| } |