Skip to content

Commit d6adaa9

Browse files
committed
added wildcard for all branches linting
1 parent 5bdab3b commit d6adaa9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: lint
33
on:
44
workflow_dispatch: # Manual trigger from GitHub UI
55
push:
6-
branches: [main]
6+
branches: ['**']
77
paths:
88
- '**.swift'
99
- '.swiftlint.yml'

.github/workflows/swift.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: build_test
33
on:
44
workflow_dispatch: # Manual trigger from GitHub UI
55
push:
6-
branches: [ main ]
6+
branches: ['**']
77
pull_request:
88
branches: [ main ]
99

0 commit comments

Comments
 (0)