Translated using Weblate (Spanish) #3650
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-wheels | |
| on: | |
| push: # run on push events | |
| paths-ignore: # but ignore everything in the docs subfolder | |
| - 'docs/**' | |
| - 'src/gui*/**' | |
| - 'src/netedit/**' | |
| - 'tests/netedit/**' | |
| branches: | |
| - '**' | |
| tags: | |
| - '*' | |
| pull_request: # run on pull requests | |
| paths-ignore: # but ignore everything in the docs subfolder | |
| - 'docs/**' | |
| workflow_dispatch: | |
| jobs: | |
| call-cibuildwheel: | |
| uses: ./.github/workflows/cibuildwheel.yml | |
| with: | |
| os: "macos-14,macos-15" |