mirror of
https://github.com/morgan9e/macos-stats
synced 2026-04-14 00:04:15 +09:00
21 lines
378 B
YAML
21 lines
378 B
YAML
name: Linter
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '.github/workflows/linter.yaml'
|
|
- '.swiftlint.yml'
|
|
- '**/*.swift'
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/linter.yaml'
|
|
- '.swiftlint.yml'
|
|
- '**/*.swift'
|
|
|
|
jobs:
|
|
SwiftLint:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: norio-nomura/action-swiftlint@3.2.1 |