45 [davidbrownell] on main #45
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
# ---------------------------------------------------------------------- | |
# | | |
# | Copyright (c) 2024 David Brownell | |
# | Distributed under the MIT License. | |
# | | |
# ---------------------------------------------------------------------- | |
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: | |
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 | |
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 | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected] | |
with: | |
gist_id: 4065d22fd6323840e81951a3bd271e1c | |
gist_filename: SimpleSchemaGenerator_coverage.json | |
secrets: | |
GIST_TOKEN: ${{ secrets.GIST_TOKEN }} | |
# ---------------------------------------------------------------------- | |
create_package: | |
needs: 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: Create Package | |
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 | |
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected] | |
with: | |
operating_system: ${{ matrix.os }} | |
python_version: ${{ matrix.python_version }} | |
validation_command: python -c "from SimpleSchemaGenerator import __version__; print(__version__)" | |
# ---------------------------------------------------------------------- | |
create_binary: | |
needs: validate | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
python_version: | |
- "3.11" | |
name: Create Binary | |
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected] | |
with: | |
operating_system: ${{ matrix.os }} | |
python_version: ${{ matrix.python_version }} | |
# ---------------------------------------------------------------------- | |
validate_binary: | |
needs: create_binary | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
python_version: | |
- "3.11" | |
name: Validate Binary | |
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected] | |
with: | |
operating_system: ${{ matrix.os }} | |
python_version: ${{ matrix.python_version }} | |
validation_command: SimpleSchemaGenerator Version | |
# ---------------------------------------------------------------------- | |
publish: | |
needs: | |
- validate_package | |
- validate_binary | |
name: Publish | |
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected] | |
with: | |
release_sources_configuration_filename: .github/release_sources.yaml | |
secrets: | |
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} |