We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbe5dd0 commit 8dc3cc2Copy full SHA for 8dc3cc2
.github/workflows/pull_request.yml
@@ -1,16 +1,14 @@
1
-name: Pull Requst
+name: Pull Request
2
3
on: [pull_request]
4
5
jobs:
6
- lint:
7
- name: Lint Formatting
8
- runs-on: ubuntu-latest
+ Lint:
+ runs-on: macos-latest
9
steps:
10
- - uses: actions/checkout@v4
11
- - name: Lint Formatting
12
- run: swift format lint --recursive --strict .
13
-
+ - uses: actions/checkout@v3
+ - name: SwiftFormat
+ run: swiftformat --lint --strict . --reporter github-actions-log
14
test-ubuntu-latest:
15
name: Test Swift ${{ matrix.swift }} Ubuntu Latest
16
strategy:
@@ -22,3 +20,4 @@ jobs:
22
20
- uses: actions/checkout@v4
23
21
- name: Run Tests
24
run: swift test -Xswiftc -warnings-as-errors -Xcc -Werror
+
0 commit comments