mtynior/SwiftPackageWithGithubActionsAsCI

View on GitHub
.github/workflows/codelint.yml

Summary

Maintainability
Test Coverage
name: Lint code

on:
  pull_request:
    paths:
      - '.github/workflows/codelint.yml'
      - '.swiftlint.yml'
      - '**/*.swift'

jobs:
  SwiftLint:
    runs-on: macos-11
    steps:
      - uses: actions/checkout@v1
      
      - name: Lint code using SwiftLint
        run: swiftlint lint --reporter github-actions-logging