Bug fix for live graphQL url #1585
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: [pull_request, workflow_dispatch] | |
concurrency: | |
group: lint-${{ github.event.number }} | |
cancel-in-progress: true | |
jobs: | |
swiftlint: | |
name: SwiftLint | |
runs-on: macOS-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Use Xcode 15.1 | |
run: sudo xcode-select -switch /Applications/Xcode_15.1.app | |
- name: Install SwiftLint | |
run: brew install swiftlint | |
- name: Run SwiftLint | |
run: swiftlint --strict |