Add macro to perform compile-time template processing #174
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: | |
push: | |
branches: [ "master", "develop" ] | |
pull_request: | |
branches: [ "master", "develop" ] | |
jobs: | |
SwiftLint: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: irgaly/setup-mint@v1 | |
- name: SwiftLint | |
run: mint run swiftlint --strict | |
SwiftFormat: | |
runs-on: macos-latest | |
needs: SwiftLint | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: irgaly/setup-mint@v1 | |
- name: SwiftFormat Lint | |
run: mint run swiftformat --lint . |