fix typos in README #25
Workflow file for this run
This file contains hidden or 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: Build, tests & soundness checks | |
| on: [push, pull_request] | |
| jobs: | |
| swift-bedrock-library: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Run tests | |
| working-directory: swift-bedrock-library | |
| run: swift test | |
| playground-backend: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Web playground backend tests | |
| working-directory: web-playground/backend | |
| run: swift build | |
| soundness: | |
| name: Soundness | |
| uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main | |
| with: | |
| license_header_check_enabled: true | |
| license_header_check_project_name: "Swift Foundation Models Playground" | |
| shell_check_enabled: false | |
| python_lint_check_enabled: false | |
| api_breakage_check_enabled: false | |
| # api_breakage_check_container_image: "swift:6.0-noble" | |
| docs_check_container_image: "swift:6.0-noble" | |
| format_check_container_image: "swift:6.0-noble" | |
| yamllint_check_enabled: true |