Rename project to Swift Bedrock Library #35
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: [pull_request, workflow_dispatch] | |
| jobs: | |
| swift-bedrock-library: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Run tests | |
| run: swift test | |
| playground-backend: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Web playground backend build | |
| working-directory: Examples/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 Bedrock Library" | |
| 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 |