Skip to content

Modernizes GitHub Actions workflows #327

Modernizes GitHub Actions workflows

Modernizes GitHub Actions workflows #327

Workflow file for this run

name: SwiftLint
on:
workflow_dispatch: {}
pull_request:
paths:
- '.github/workflows/swiftlint.yml'
- '.swiftlint.yml'
- '**/*.swift'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
SwiftLint:
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: SwiftLint
run: swiftlint --quiet --strict --reporter github-actions-logging