Skip to content

Commit

Permalink
Don't double-run CI on my CRs
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhoo committed Feb 12, 2022
1 parent dc71936 commit 4722064
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 6 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
on: [push, pull_request]
on:
push:
branches: [master]
pull_request:
name: coverage
jobs:
test:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/features.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
on: [push, pull_request]
on:
push:
branches: [master]
pull_request:
name: cargo hack
jobs:
check:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/minimal.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
on: [push, pull_request]
on:
push:
branches: [master]
pull_request:
name: With dependencies at minimal versions
jobs:
test:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
on: [push, pull_request]
on:
push:
branches: [master]
pull_request:
name: Minimum Supported Rust Version
jobs:
check:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
on: [push, pull_request]
on:
push:
branches: [master]
pull_request:
name: lint
jobs:
style:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
on: [push, pull_request]
on:
push:
branches: [master]
pull_request:
name: cargo test
jobs:
test:
Expand Down

0 comments on commit 4722064

Please sign in to comment.