Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@ name: Build, validate & Release
# - For releases: when you push a tag like v1.2.3, this workflow runs the full matrix validation, then builds the release artifacts, and finally publishes to PyPI if all checks pass.

on:
workflow_dispatch:
# Release pipeline: run only when pushing a version-like tag (e.g. v1.2.3)
# Test pipeline: run tests on main/master pushes & pull requests AND tags.
push:
tags:
- "v*.*.*"
branches:
- main
- master

# Validation pipeline: run on PRs targeting main/master (no publishing)
pull_request:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/testing-ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
name: CI

on:
push:
branches:
- main
- master
tags:
- "v*.*.*"
pull_request:
branches: [main, master]
types: [opened, synchronize, reopened]

concurrency:
Expand Down