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 6592df5 commit 9936459Copy full SHA for 9936459
.github/workflows/build.yml
@@ -2,6 +2,9 @@ name: Build
2
on:
3
workflow_dispatch:
4
workflow_call:
5
+ push:
6
+ branches:
7
+ - main
8
pull_request:
9
branches:
10
- main
@@ -15,4 +18,4 @@ jobs:
15
18
uses: actions/checkout@v2
16
19
17
20
- name: Building
- run: swift build -c release --arch arm64 --arch x86_64
21
+ run: swift build -c release --arch arm64 --arch x86_64
.github/workflows/swiftlint.yml
@@ -0,0 +1,18 @@
1
+name: SwiftLint
+on:
+ workflow_call:
+ - 'main'
+ pull_request:
+jobs:
11
+ SwiftLint:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v1
+ - name: GitHub Action for SwiftLint with --strict
+ uses: norio-nomura/[email protected]
+ with:
+ args: --strict
0 commit comments