Skip to content

Commit c3e87fd

Browse files
authored
Sort test actions at the top of the workflow jobs list (#1204)
Reorder the jobs so that the tests appear at the top of the list. This should make it so developers don't have to scroll the jobs list to see what tests failed.
1 parent 69a1890 commit c3e87fd

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

Diff for: .github/workflows/pull_request.yml

+13-13
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,6 @@ on:
55
types: [opened, reopened, synchronize]
66

77
jobs:
8-
soundness:
9-
name: Soundness
10-
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
11-
with:
12-
# Pending https://github.com/swiftlang/vscode-swift/pull/1176
13-
license_header_check_enabled: false
14-
license_header_check_project_name: "VS Code Swift"
15-
api_breakage_check_enabled: false
16-
docs_check_enabled: false
17-
format_check_enabled: false
18-
shell_check_enabled: true
19-
unacceptable_language_check_enabled: true
20-
218
tests:
229
name: Test
2310
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
@@ -37,3 +24,16 @@ jobs:
3724
echo "$NODE_PATH" >> $GITHUB_PATH
3825
linux_build_command: ./docker/test.sh
3926
enable_windows_checks: false
27+
28+
soundness:
29+
name: Soundness
30+
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
31+
with:
32+
# Pending https://github.com/swiftlang/vscode-swift/pull/1176
33+
license_header_check_enabled: false
34+
license_header_check_project_name: "VS Code Swift"
35+
api_breakage_check_enabled: false
36+
docs_check_enabled: false
37+
format_check_enabled: false
38+
shell_check_enabled: true
39+
unacceptable_language_check_enabled: true

0 commit comments

Comments
 (0)