Skip to content

Commit 82b0bcb

Browse files
authored
Create lint-codebase.yml
1 parent f7c5a7b commit 82b0bcb

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/lint-codebase.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Lint Codebase
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- '**.swift'
7+
push:
8+
paths:
9+
- '**.swift'
10+
11+
jobs:
12+
swiftlint:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: Run SwiftLint
17+
uses: GetAutomaApp/opensource-actions/swiftlint@main

0 commit comments

Comments
 (0)