Update release version to 0.5.0 #30
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: SwiftLint | |
on: | |
pull_request: | |
paths: | |
- '**.swift' | |
jobs: | |
# Runs swiftlint on any pull request to main (note: this runs for _all_ files, not only the changed files in the PR!) | |
SwiftLint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cirruslabs/swiftlint-action@v1 | |
with: | |
version: latest | |
args: "--strict" |