Drop the Sqlite3Shell CLI driver — SDK-only package #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| 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 |