Skip to content

Commit

Permalink
disable coverage and doc push on PR
Browse files Browse the repository at this point in the history
  • Loading branch information
lsy323 committed Oct 4, 2023
1 parent 8ed6eb6 commit 53efc29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

test-cpu-coverage:
name: "Collect CPU test coverage"
# if: github.event_name == 'push' && github.event.ref == 'refs/heads/master'
if: github.event_name == 'push' && github.event.ref == 'refs/heads/master'
uses: ./.github/workflows/_coverage.yml
needs: build
with:
Expand All @@ -62,7 +62,7 @@ jobs:

test-gpu-coverage:
name: "Collect GPU test coverage"
# if: github.event_name == 'push' && github.event.ref == 'refs/heads/master'
if: github.event_name == 'push' && github.event.ref == 'refs/heads/master'
uses: ./.github/workflows/_coverage.yml
needs: build
with:
Expand All @@ -76,7 +76,7 @@ jobs:

push-docs:
name: "Build & publish docs"
# if: github.event_name == 'push' && (github.event.ref == 'refs/heads/master' || startsWith(github.event.ref, 'refs/tags/r'))
if: github.event_name == 'push' && (github.event.ref == 'refs/heads/master' || startsWith(github.event.ref, 'refs/tags/r'))
uses: ./.github/workflows/_docs.yml
needs: build
with:
Expand Down

0 comments on commit 53efc29

Please sign in to comment.