Files
macos-stats/.github/workflows/linter.yaml
Serhiy Mytrovtsiy 45e8165fc5 feat: added new action that builds the project
feat: updated actions/checkout to v3
2022-11-08 18:05:59 +01:00

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