We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf53236 commit 99feae3Copy full SHA for 99feae3
.github/workflows/ci.yml
@@ -4,7 +4,12 @@ on:
4
push:
5
branches:
6
- main
7
- - dev
+ paths:
8
+ - '.swiftlint.yml'
9
+ - ".github/workflows/**"
10
+ - "Package.swift"
11
+ - "Source/**"
12
+ - "Tests/**"
13
pull_request:
14
paths:
15
- '.swiftlint.yml'
@@ -13,6 +18,10 @@ on:
18
- "Source/**"
19
- "Tests/**"
20
21
+concurrency:
22
+ group: validator-${{ github.head_ref }}
23
+ cancel-in-progress: true
24
+
16
25
jobs:
17
26
SwiftLint:
27
runs-on: ubuntu-latest
@@ -114,7 +123,7 @@ jobs:
114
123
- name: Upload test coverage reports to Codecov
115
124
uses: space-code/oss-common-actions/.github/actions/upload_test_coverage_report@main
116
125
with:
117
- scheme_name: Typhoon
126
+ scheme_name: Validator-Package
118
127
filename: ${{ matrix.name }}
119
128
token: ${{ secrets.CODECOV_TOKEN }}
120
129
0 commit comments