Skip to content

env: Create main README.md #13

env: Create main README.md

env: Create main README.md #13

Workflow file for this run

name: SwiftLint
on:
pull_request:
branches: [ main ]
paths:
- '.github/workflows/swiftlint.yml'
- './.swiftlint.yml'
- './**/*.swift'
push:
branches:
- main
workflow_dispatch:
jobs:
lint:
name: Run SwiftLint
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Cache Homebrew
id: cache-brew
uses: actions/cache@v3
with:
path: /usr/local/Homebrew
key: ${{ runner.os }}-brew-${{ hashFiles('**/*.swift') }}
restore-keys: |
${{ runner.os }}-brew-
- name: Install Homebrew
if: steps.cache-brew.outputs.cache-hit != 'true'
run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- name: Install SwiftLint
run: brew install swiftlint
- name: Run SwiftLint
run: swiftlint --fix --strict --config ./.swiftlint.yml