Skip to content

Standard Library Conformances #11

Standard Library Conformances

Standard Library Conformances #11

Workflow file for this run

name: Swift
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
SwiftActions:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Lint
if: ${{ runner.os == 'macOS' }}
shell: bash
run: swiftformat --lint . --reporter github-actions-log
- name: Swift Build
uses: SwiftActions/SwiftBuild@main
- name: Swift Test
uses: SwiftActions/SwiftTest@main