Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Lint
run-name: Lint (${{ github.head_ref || github.ref_name }})

on:
pull_request:
workflow_dispatch:

concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read

jobs:
swiftformat:
name: SwiftFormat
runs-on: ubuntu-latest
container: swift:6.0
steps:
- name: Checkout
uses: actions/checkout@v5

- name: Cache SwiftFormat build
uses: actions/cache@v4
with:
path: BuildTools/.build
key: ${{ runner.os }}-swiftformat-${{ hashFiles('BuildTools/Package.resolved', 'BuildTools/Package.swift') }}
restore-keys: |
${{ runner.os }}-swiftformat-

- name: SwiftFormat --lint
run: |
swift run -c release --package-path BuildTools swiftformat . \
--lint \
--header "LoopFollow\n{file}" \
--exclude Pods,Generated,R.generated.swift,fastlane/swift,Dependencies,dexcom-share-client-swift
11 changes: 11 additions & 0 deletions LoopFollow/LintTestThrowaway.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Wrong header on purpose to make swiftformat --lint fail.

import Foundation

struct LintTestThrowaway {
let value: Int

func describe() -> String {
return "value=\(value)"
}
}
Loading