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 12552e0 commit ccc326dCopy full SHA for ccc326d
.github/workflows/pull_request.yml
@@ -0,0 +1,24 @@
1
+name: Pull Requst
2
+
3
+on: [pull_request]
4
5
+jobs:
6
+ lint:
7
+ name: Lint Formatting
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - name: Lint Formatting
12
+ run: swift format lint --recursive --strict .
13
14
+ test-ubuntu-latest:
15
+ name: Test Swift ${{ matrix.swift }} Ubuntu Latest
16
+ strategy:
17
+ matrix:
18
+ swift: ["6.0", "6.0.1", "6.0.2"]
19
20
+ container: swift:${{ matrix.swift }}
21
22
23
+ - name: Run Tests
24
+ run: swift test -Xswiftc -warnings-as-errors -Xcc -Werror
0 commit comments