chore(deps): update coverallsapp/github-action digest to cfd0633 #96
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
on: [pull_request] | |
jobs: | |
assert-formatted: | |
name: Assert that code has been linted and formatted before merging | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- uses: ./.github/actions/setup-ios | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run swiftformat. Fail if any errors. | |
run: task format && git diff --exit-code | |
- name: Run swiftlint. Fail if any errors. | |
run: task lint |