Skip to content

Merge pull request #1 from Cocoanetics/claude/add-sqlite3shell-driver #4

Merge pull request #1 from Cocoanetics/claude/add-sqlite3shell-driver

Merge pull request #1 from Cocoanetics/claude/add-sqlite3shell-driver #4

Workflow file for this run

---
name: SwiftLint
on:
pull_request:
paths:
- '.github/workflows/swiftlint.yml'
- '.swiftlint.yml'
- '**/*.swift'
push:
branches:
- main
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
lint:
# macOS + Homebrew SwiftLint, mirroring the Cocoanetics convention
# (ShellKit) — same binary and rule set as the local pre-commit hook,
# no version drift between dev and CI.
runs-on: macos-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- name: Install SwiftLint
run: brew install swiftlint
- name: SwiftLint version
run: swiftlint --version
- name: Lint
run: swiftlint lint --strict --quiet