Skip to content

Fix comment.

Fix comment. #62

name: "\U0001F9F9 Swift Lint| WrkstrmFoundation"
on:
pull_request:
branches:
- main
push:
branches:
- main
paths:
- '**'
jobs:
swift-build:
strategy:
matrix:
os:
- macos-14
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Cache Homebrew dependencies
id: cache-brew
uses: actions/cache@v4
with:
path: /usr/local/Homebrew ~/Library/Caches/Homebrew
key: ${{ runner.os }}-homebrew-${{ hashFiles('**/Brewfile') }}
- name: Check Cache
run: 'echo ''Cache hit: ${{ steps.cache-brew.outputs.cache-hit }}'''
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
if: matrix.os == 'macos-latest' || matrix.os == 'macos-14' || matrix.os == 'self-hosted'
with:
xcode-version: '15.3'
- name: Set CI Style
run: echo "SPM_CI_USE_LOCAL_DEPS=false" >> $GITHUB_ENV
- name: Check CI Style
run: '[ -z "${SPM_CI_USE_LOCAL_DEPS}" ] && echo "SPM_CI_LOCAL_DEPS is not set"
|| echo "SPM_CI_USE_LOCAL_DEPS is set to ${SPM_CI_USE_LOCAL_DEPS}"'
env:
SPM_CI_USE_LOCAL_DEPS: ${{ env.SPM_CI_USE_LOCAL_DEPS }}
- name: brew install swiftlint
if: steps.cache-brew.outputs.cache-hit != 'true'
run: brew install swiftlint
- name: Download SwiftLint Configuration
if: matrix.os == 'macos-latest' || matrix.os == 'macos-13'
run: curl -O https://raw.githubusercontent.com/wrkstrm/WrkstrmConfig/main/.swiftlint.yml
- name: SwiftLint
run: swiftlint