Skip to content

Add the Sqlite3Shell CLI driver as a product #3

Add the Sqlite3Shell CLI driver as a product

Add the Sqlite3Shell CLI driver as a product #3

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