Migrate to pyproject.toml and common workflows, update for numpy 2.0 #633
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
# Build documentation | |
# The build is uploaded as artifact if the triggering event is a push for a pull request | |
# The build is published to github pages if the triggering event is a push to the master branch (PR merge) | |
name: Build and upload documentation | |
on: # Runs on any push event in a PR or any push event to master | |
pull_request: | |
push: | |
branches: | |
- 'master' | |
jobs: | |
documentation: | |
uses: pylhc/.github/.github/workflows/documentation.yml@master |