Skip to content

Add an option for encoding scalars with newlines to Emitter.Options #262

Add an option for encoding scalars with newlines to Emitter.Options

Add an option for encoding scalars with newlines to Emitter.Options #262

name: SwiftLint Analyze
on:
push:
branches: [main]
paths:
- '.github/workflows/swiftlint_analyze.yml'
- 'Yams.xcodeproj/**'
- 'Sources/**/*.[ch]'
- 'Sources/**/*.swift'
- 'Tests/**/*.swift'
- '!Tests/LinuxMain.swift'
pull_request:
paths:
- '.github/workflows/swiftlint_analyze.yml'
- 'Yams.xcodeproj/**'
- 'Sources/**/*.[ch]'
- 'Sources/**/*.swift'
- 'Tests/**/*.swift'
- '!Tests/LinuxMain.swift'
jobs:
Analyze:
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_15.0.app
steps:
- uses: actions/checkout@v3
- name: Generate xcodebuild.log
run: xcodebuild -sdk macosx -scheme Yams -project Yams.xcodeproj clean build-for-testing > xcodebuild.log
shell: bash
- name: Install SwiftLint
run: brew install swiftlint || brew upgrade swiftlint
- name: Run SwiftLint Analyze
run: swiftlint analyze --strict --compiler-log-path xcodebuild.log --reporter github-actions-logging