[pre-commit.ci] pre-commit autoupdate #374
Workflow file for this run
This file contains 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: Wheel building | |
on: | |
schedule: | |
# run every Monday at 5am UTC | |
- cron: '0 5 * * 1' | |
pull_request: | |
# We also want this workflow triggered if the 'Build all wheels' | |
# label is added or present when PR is updated | |
types: | |
- synchronize | |
- labeled | |
push: | |
branches: | |
- '*' | |
tags: | |
- '*' | |
- '!*dev*' | |
- '!*pre*' | |
- '!*post*' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
build_and_publish: | |
# This job builds the wheels and publishes them to PyPI for all | |
# tags, except those ending in ".dev". For PRs with the "Build all | |
# wheels" label, wheels are built, but are not uploaded to PyPI. | |
permissions: | |
contents: none | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml@924441154cf3053034c6513d5e06c69d262fb9a6 # v1.13.0 | |
if: (github.repository == 'astropy/regions' && (github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'Build all wheels'))) | |
with: | |
# We upload to PyPI for all tag pushes, except tags ending in .dev | |
upload_to_pypi: ${{ startsWith(github.ref, 'refs/tags/') && !endsWith(github.ref, '.dev') && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') }} | |
test_extras: test | |
test_command: pytest -p no:warnings --pyargs regions | |
targets: | | |
# Linux wheels | |
- cp310-manylinux_x86_64 | |
- cp311-manylinux_x86_64 | |
- cp312-manylinux_x86_64 | |
# MacOS X wheels | |
# Note that the arm64 wheels are not actually tested so we rely | |
# on local manual testing of these to make sure they are ok. | |
- cp310*macosx_x86_64 | |
- cp311*macosx_x86_64 | |
- cp312*macosx_x86_64 | |
- cp310*macosx_arm64 | |
- cp311*macosx_arm64 | |
- cp312*macosx_arm64 | |
# Windows wheels | |
- cp310*win_amd64 | |
- cp311*win_amd64 | |
- cp312*win_amd64 | |
secrets: | |
pypi_token: ${{ secrets.pypi_token }} |