Move SwiftLint Analyze CI job to GitHub Actions (#3820)

This commit is contained in:
JP Simard 2022-01-24 19:25:39 -05:00 committed by GitHub
parent 0c731e72da
commit 83560fffa7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 9 deletions

17
.github/workflows/analyze.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Analyze
on:
push:
branches: [master]
pull_request:
branches: ['*']
jobs:
analyze:
name: Analyze
runs-on: macos-latest
env:
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app
steps:
- uses: actions/checkout@v2
- run: make analyze

View File

@ -30,15 +30,6 @@ jobs:
testResultsFiles: build/reports/**
condition: succeededOrFailed()
- job: Analyze
pool:
vmImage: 'macOS-11'
variables:
DEVELOPER_DIR: /Applications/Xcode_13.0.app
steps:
- script: make analyze
displayName: Run SwiftLint Analyze
- job: TSan
pool:
vmImage: 'macOS-11'