meta/.gitea/workflows/swiftlint.yml
david-swift 60022cdd6f
Some checks failed
Deploy Docs / publish (push) Failing after 10s
SwiftLint / SwiftLint (push) Failing after 10s
Migrate to the Aparoksha gitea instance
2024-10-06 23:11:50 +02:00

31 lines
614 B
YAML

name: SwiftLint
on:
push:
paths:
- '.gitea/workflows/swiftlint.yml'
- '.swiftlint.yml'
- '**/*.swift'
pull_request:
paths:
- '.gitea/workflows/swiftlint.yml'
- '.swiftlint.yml'
- '**/*.swift'
workflow_dispatch:
paths:
- '.gitea/workflows/swiftlint.yml'
- '.swiftlint.yml'
- '**/*.swift'
jobs:
SwiftLint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: SwiftLint
uses: norio-nomura/action-swiftlint@3.2.1
with:
args: --strict
env:
WORKING_DIRECTORY: Source