Fix docc #101
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
name: MacOS | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Select Xcode 14.2 | |
run: sudo xcode-select -s /Applications/Xcode_14.2.app | |
- name: Run tests | |
run: make test-swift | |
ubuntu: | |
name: Ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run tests | |
run: make test-linux | |
windows: | |
name: Windows | |
strategy: | |
matrix: | |
os: [windows-latest] | |
config: ['debug', 'release'] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: compnerd/gha-setup-swift@main | |
with: | |
branch: swift-5.8.1-release | |
tag: 5.8.1-RELEASE | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: swift build -c ${{ matrix.config }} | |
- name: Run tests (debug only) | |
# There is an issue that exists in the 5.8.1 toolchain | |
# which fails on release configuration testing, but | |
# this issue is fixed 5.9 so we can remove the if once | |
# that is generally available. | |
if: ${{ matrix.config == 'debug' }} | |
run: swift test |