Skip to content

Commit 0616be7

Browse files
committed
feat: only run CI on push, not both PR and push, which can cause GPU conflicts
1 parent e4009f1 commit 0616be7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: CI
22

3-
on: [pull_request, push]
3+
#on: [pull_request, push]
4+
on: [push]
45

56
# Cancel a job if there's a new on on the same branch started.
67
# Based on https://stackoverflow.com/questions/58895283/stop-already-running-workflow-job-in-github-actions/67223051#67223051

0 commit comments

Comments
 (0)