ci: add release workflow #18
Workflow file for this run
This file contains 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: Lint | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [main] | |
jobs: | |
lint: | |
name: SwiftLint Linting | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install SwiftLint | |
run: | | |
brew install swiftlint | |
swiftlint version | |
- name: Run SwiftLint | |
run: swiftlint |