Skip to content

Commit 749e6cf

Browse files
committed
change master->main, reduce num suites run
1 parent b191575 commit 749e6cf

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/pytest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: build
66
on:
77
push:
88
branches:
9-
- master
9+
- main
1010
- develop
1111
pull_request:
1212

.github/workflows/quick-pytest.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
name: quick-tests
55

66
on:
7-
- push
7+
push:
8+
branches:
9+
- '*'
10+
- '!main'
11+
- '!develop'
812

913
jobs:
1014
build:
@@ -13,7 +17,7 @@ jobs:
1317
strategy:
1418
max-parallel: 4
1519
matrix:
16-
python-version: ['3.9', '3.10', '3.11', '3.12']
20+
python-version: ['3.11']
1721

1822
steps:
1923
- uses: actions/checkout@v3
@@ -43,3 +47,4 @@ jobs:
4347
GRAPHKB_PASS: ${{ secrets.GKB_TEST_PASS }}
4448
EXCLUDE_INTEGRATION_TESTS: 1
4549
# EXCLUDE_INTEGRATION_TESTS: ${{ matrix.python-version != '3.11' }}
50+
if: github.event_name != 'pull_request'

0 commit comments

Comments
 (0)