11 [davidbrownell] on main #11
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: "Standard" | |
run-name: ${{ github.run_number }} [${{ github.actor }}] on ${{ github.ref_name }} | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: '0 0 * * *' # Once a day at 12am UTC | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
# ---------------------------------------------------------------------- | |
action_contexts: | |
name: "Display GitHub Action Contexts" | |
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected] | |
# ---------------------------------------------------------------------- | |
validate: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
python_version: | |
- "3.12" | |
- "3.11" | |
- "3.10" | |
# - "3.9" # Not supported | |
# - "3.8" # Not supported | |
name: Validate | |
permissions: | |
contents: read | |
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected] | |
with: | |
operating_system: ${{ matrix.os }} | |
python_version: ${{ matrix.python_version }} | |
# ---------------------------------------------------------------------- | |
package_coverage: | |
needs: validate | |
name: Postprocess Coverage Info | |
permissions: | |
contents: read | |
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected] | |
with: | |
gist_id: f15146b1b8fdc0a5d45ac0eb786a84f7 | |
gist_filename: dbrownell_Common_coverage.json | |
secrets: | |
GIST_TOKEN: ${{ secrets.GIST_TOKEN }} | |
# ---------------------------------------------------------------------- | |
create_package: | |
needs: package_coverage | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
python_version: | |
- "3.12" | |
- "3.11" | |
- "3.10" | |
# - "3.9" # Not supported | |
# - "3.8" # Not supported | |
name: Create Package | |
permissions: | |
contents: read | |
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected] | |
with: | |
operating_system: ${{ matrix.os }} | |
python_version: ${{ matrix.python_version }} | |
# ---------------------------------------------------------------------- | |
validate_package: | |
needs: create_package | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
python_version: | |
- "3.12" | |
- "3.11" | |
- "3.10" | |
# - "3.9" # Not supported | |
# - "3.8" # Not supported | |
name: Validate Package | |
permissions: | |
contents: read | |
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected] | |
with: | |
operating_system: ${{ matrix.os }} | |
python_version: ${{ matrix.python_version }} | |
validation_command: python -c "from dbrownell_Common import __version__; print(__version__)" | |
# ---------------------------------------------------------------------- | |
publish: | |
needs: | |
- validate_package | |
name: Publish | |
permissions: | |
contents: write | |
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected] | |
with: | |
release_sources_configuration_filename: .github/release_sources.yaml | |
secrets: | |
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | |
MINISIGN_PRIVATE_KEY: ${{ secrets.MINISIGN_PRIVATE_KEY }} |