Skip to content

Commit fb164dc

Browse files
publish python test
1 parent 68ba432 commit fb164dc

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

.github/workflows/python-tests.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: Python Tests
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches:
6+
- master
7+
- cloudcheck-v8
68
pull_request:
79

810
jobs:
@@ -41,7 +43,7 @@ jobs:
4143
publish:
4244
runs-on: ubuntu-latest
4345
needs: test
44-
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
46+
if: github.event_name == 'push' && github.ref == 'refs/heads/cloudcheck-v8'
4547
steps:
4648
- uses: actions/checkout@v6
4749
- name: Set up Python
@@ -62,7 +64,7 @@ jobs:
6264
linux:
6365
runs-on: ${{ matrix.platform.runner }}
6466
needs: publish
65-
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
67+
if: github.event_name == 'push' && github.ref == 'refs/heads/cloudcheck-v8'
6668
strategy:
6769
matrix:
6870
platform:
@@ -99,7 +101,7 @@ jobs:
99101
musllinux:
100102
runs-on: ${{ matrix.platform.runner }}
101103
needs: publish
102-
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
104+
if: github.event_name == 'push' && github.ref == 'refs/heads/cloudcheck-v8'
103105
strategy:
104106
matrix:
105107
platform:
@@ -132,7 +134,7 @@ jobs:
132134
windows:
133135
runs-on: ${{ matrix.platform.runner }}
134136
needs: publish
135-
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
137+
if: github.event_name == 'push' && github.ref == 'refs/heads/cloudcheck-v8'
136138
strategy:
137139
matrix:
138140
platform:
@@ -161,7 +163,7 @@ jobs:
161163
macos:
162164
runs-on: ${{ matrix.platform.runner }}
163165
needs: publish
164-
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
166+
if: github.event_name == 'push' && github.ref == 'refs/heads/cloudcheck-v8'
165167
strategy:
166168
matrix:
167169
platform:
@@ -189,7 +191,7 @@ jobs:
189191
sdist:
190192
runs-on: ubuntu-latest
191193
needs: publish
192-
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
194+
if: github.event_name == 'push' && github.ref == 'refs/heads/cloudcheck-v8'
193195
steps:
194196
- uses: actions/checkout@v6
195197
- name: Build sdist
@@ -207,7 +209,7 @@ jobs:
207209
name: Release
208210
runs-on: ubuntu-latest
209211
needs: [linux, musllinux, windows, macos, sdist]
210-
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
212+
if: github.event_name == 'push' && github.ref == 'refs/heads/cloudcheck-v8'
211213
permissions:
212214
# Use to sign the release artifacts
213215
id-token: write

0 commit comments

Comments
 (0)