This repository was archived by the owner on Feb 23, 2026. It is now read-only.
refact: refactor service protocols to providable interfaces #285
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: Swift | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| - "develop" | |
| pull_request: | |
| branches: | |
| - "main" | |
| - "develop" | |
| jobs: | |
| build: | |
| name: Build with Swift ${{ matrix.swift }} on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| swift: ["6.1"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: SwiftyLab/setup-swift@a0188eaa95c3af0db72e8697c2f0a91c514da86c | |
| with: | |
| swift-version: ${{ matrix.swift }} | |
| - name: Get Swift version | |
| run: swift --version | |
| - name: Build | |
| run: swift build -v | |
| - name: Run tests | |
| run: swift test -v |