Skip to content

Commit 1f590fc

Browse files
authored
ci: reorganize GitHub workflows for better test coverage (#1079)
1 parent c5da691 commit 1f590fc

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

.github/workflows/full-tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
- "**/*.md"
88
- ".github/**"
99
push:
10+
branches:
11+
- main
12+
- develop
1013
tags:
1114
- "v*"
1215
workflow_dispatch:

.github/workflows/latest-deps-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: Test with Latest Dependencies
22

33
on:
4-
push:
54
schedule:
65
- cron: "0 22 * * *" # 10:00 PM UTC, daily
76
jobs:

.github/workflows/pr-tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: PR Tests
22

3-
# we don't ignore markdkowns to run pre-commits
43
on:
5-
push:
4+
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
6+
# we don't ignore markdkowns to run pre-commits
67
paths-ignore:
78
- ".github/**"
89

.github/workflows/test-and-build-wheel.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
name: Build and Test Python Wheel
1+
name: Build and Test Distribution
22

33
on:
4-
pull_request:
5-
types: [review_requested, ready_for_review]
6-
paths-ignore:
7-
- "**/*.md"
84
push:
5+
branches:
6+
- main
7+
- develop
98
tags:
109
- "v*"
1110
schedule:

0 commit comments

Comments
 (0)