Skip to content

Commit 5b70960

Browse files
authored
Run CI checks on all PRs against to main (#20)
With path-based filters for CI jobs we cannot consistently use branch protection as jobs marked "required" wouldn't necessarily run on a given PR.
1 parent a7c6d00 commit 5b70960

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

.github/workflows/book.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,12 @@
22
# SPDX-License-Identifier: Apache-2.0 OR MIT
33

44
# This workflow is responsible for building and releasing the book.
5-
# It should only run when there has been a change to the book files
6-
# or via manual trigger.
75

86
name: Build Book
97
on:
108
workflow_dispatch:
119
pull_request:
12-
paths:
13-
- 'doc/**'
14-
- '.github/workflows/book.yml'
10+
branches: [ main ]
1511
push:
1612
paths:
1713
- 'doc/**'

.github/workflows/kani.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ name: Kani
77
on:
88
workflow_dispatch:
99
pull_request:
10-
paths:
11-
- 'library/**'
12-
- '.github/workflows/kani.yml'
10+
branches: [ main ]
1311
push:
1412
paths:
1513
- 'library/**'

.github/workflows/rustc.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@ name: Rust Tests
88
on:
99
workflow_dispatch:
1010
pull_request:
11-
paths:
12-
- 'library/**'
13-
- 'rust-toolchain.toml'
14-
- '.github/workflows/rustc.yml'
11+
branches: [ main ]
1512
push:
1613
paths:
1714
- 'library/**'

0 commit comments

Comments
 (0)