Skip to content

Commit 874cb5b

Browse files
committed
Separate soundness and ci into separate actions
1 parent 7de27b9 commit 874cb5b

2 files changed

Lines changed: 16 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: ci
22

33
on:
44
push:
5+
# branches: [ main ]
56
pull_request:
67
schedule:
78
- cron: '0 0 * * *'
@@ -15,12 +16,6 @@ concurrency:
1516
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
1617

1718
jobs:
18-
soundness:
19-
name: Soundness
20-
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
21-
with:
22-
license_header_check_project_name: "Swift.org"
23-
2419
build-examples:
2520
strategy:
2621
fail-fast: false

.github/workflows/soundness.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: soundness
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
soundness:
12+
name: Soundness
13+
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
14+
with:
15+
license_header_check_project_name: "Swift.org"

0 commit comments

Comments
 (0)