Skip to content

Commit

Permalink
change master->main, reduce num suites run
Browse files Browse the repository at this point in the history
  • Loading branch information
elewis2 committed Jul 19, 2024
1 parent b191575 commit 749e6cf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: build
on:
push:
branches:
- master
- main
- develop
pull_request:

Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/quick-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
name: quick-tests

on:
- push
push:
branches:
- '*'
- '!main'
- '!develop'

jobs:
build:
Expand All @@ -13,7 +17,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.11']

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

0 comments on commit 749e6cf

Please sign in to comment.