mirror of
https://github.com/otaviocc/Triton.git
synced 2026-01-29 19:54:27 +00:00
20 lines
354 B
YAML
20 lines
354 B
YAML
name: SwiftLint Check
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
swiftlint:
|
|
name: SwiftLint
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install SwiftLint
|
|
run: brew install swiftlint
|
|
|
|
- name: Run SwiftLint
|
|
run: swiftlint lint --reporter github-actions-logging
|