Update no_release_standard_out
lint rule to include SwiftUI `_prin…
#439
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test-package-plugin: | |
name: Test Package Plugin | |
runs-on: macos-13 | |
strategy: | |
fail-fast: false | |
matrix: | |
xcode: | |
- '14.2' # Swift 5.7 | |
- '14.3' # Swift 5.8 | |
- '15.0' # Swift 5.9 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/setup | |
with: | |
xcode: ${{ matrix.xcode }} | |
- name: Test Package Plugin | |
run: bundle exec rake lint:swift | |
unit-tests: | |
name: Unit Tests | |
runs-on: macos-13 | |
strategy: | |
fail-fast: false | |
matrix: | |
xcode: | |
- '15.0' # Swift 5.9 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/setup | |
with: | |
xcode: ${{ matrix.xcode }} | |
- name: Run Unit Tests | |
run: swift test |