Inconsistency in documentation brought up by docc v6 #194
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: Validity Check | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-validate | |
cancel-in-progress: true | |
jobs: | |
validate: | |
runs-on: macOS-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Install Dependencies | |
run: | | |
brew install mint | |
mint install NickLockwood/SwiftFormat@0.53.10 --no-link | |
- name: run script | |
run: ./scripts/validate.sh |