-
Notifications
You must be signed in to change notification settings - Fork 120
36 lines (36 loc) · 1.2 KB
/
linting.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Linting
on:
push:
paths: ["**.swift"]
branches: [main]
pull_request:
paths: ["**.swift"]
branches: [main]
workflow_dispatch:
jobs:
linting:
name: Linting
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: swift-actions/setup-swift@v2
- name: Print SwiftLint version
run: swiftlint --version
- name: Run SwiftLint
run: swiftlint --strict
- name: Print SwiftFormat version
run: swiftformat --version
- name: Run SwiftFormat
run: swiftformat --lint .
- name: Download DrString
run: curl --location --remote-name https://github.com/dduan/DrString/releases/latest/download/drstring-universal-apple-darwin.tar.gz
- name: Extract DrString
run: |
mkdir drstring-universal-apple-darwin
tar --extract --file drstring-universal-apple-darwin.tar.gz --directory drstring-universal-apple-darwin
- name: Add DrString to $PATH
run: echo "$GITHUB_WORKSPACE/drstring-universal-apple-darwin" >> $GITHUB_PATH
- name: Print DrString version
run: drstring --version
- name: Run DrString
run: drstring check --config-file .drstring.toml