Refine icons wall Scrollview appearance to match screen width #129
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 | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: SwiftLint | |
run: | | |
swift run -c release --package-path BuildTools swiftlint lint --config .swiftlint.yml --reporter html > report.html | |
continue-on-error: true | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: Lint Report | |
path: report.html |