We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65ddf7c commit eee4671Copy full SHA for eee4671
1 file changed
.github/workflows/ci.yml
@@ -5,8 +5,18 @@
5
6
name: CI Tests
7
on:
8
+ # 1) manual run from the Actions tab
9
+ workflow_dispatch:
10
+
11
+ # 2) tagged releases (v*)
12
+ # 3) any branch push that changes files under tests/
13
push:
- tags: [ 'v*' ] # CI only runs on tagged releases like v1.2.3
14
+ branches:
15
+ - '**' # allow all branches (needed so branches still trigger)
16
+ tags:
17
+ - 'v*' # run on tags like v1.2.3
18
+ paths:
19
+ - 'tests/**' # only run on branch pushes if something in tests/ changed
20
21
22
jobs:
0 commit comments