Disable changenote creation for pre-commit update PRs #68
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
workflow_call: | |
defaults: | |
run: | |
shell: bash # https://github.com/beeware/briefcase/pull/912 | |
jobs: | |
pre-commit: | |
name: Pre-commit checks | |
uses: beeware/.github/.github/workflows/pre-commit-run.yml@main | |
with: | |
pre-commit-source: "pre-commit" | |
verify-apps: | |
name: Build apps | |
needs: pre-commit | |
uses: beeware/.github/.github/workflows/app-build-verify.yml@main | |
with: | |
python-version: ${{ matrix.python-version }} | |
python-source: ${{ matrix.python-source }} | |
runner-os: windows-latest | |
framework: ${{ matrix.framework }} | |
target-platform: windows | |
target-format: VisualStudio | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] | |
python-source: [ "github", "winstore" ] | |
# PySide2 and PySide6 produce very long paths that can't be packaged | |
# by WiX. Disable these targets until the problem has been fixed. | |
# See beeware/briefcase#948 | |
# framework: ["toga", "pyside2", "pyside6", "ppb"] | |
framework: [ "toga", "ppb", "pygame" ] | |
exclude: | |
# # PySide2 doesn't publish a binary wheel that is compatible | |
# # with Python 3.11, and is unlikely to ever do so. | |
# - python-version: "3.11" | |
# framework: "pyside2" | |
# Pygame hasn't published 3.12 wheels yet. | |
- python-version: 3.12 | |
python-source: github | |
framework: pygame | |
- python-version: 3.12 | |
python-source: winstore | |
framework: pygame |