Add support for typed throws #94
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: Swift | |
on: [push] | |
jobs: | |
build: | |
name: Build | |
strategy: | |
matrix: | |
swift: [6.0.2] | |
os: [ubuntu-20.04, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Swift | |
uses: slashmo/[email protected] | |
with: | |
version: ${{ matrix.swift }} | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Swift Version | |
run: swift --version | |
- name: Build (Debug) | |
run: swift build -c debug | |
- name: Build (Release) | |
run: swift build -c release | |
test-linux: | |
name: Test Linux | |
strategy: | |
matrix: | |
swift: [6.0.2] | |
os: [ubuntu-20.04] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Swift | |
uses: slashmo/[email protected] | |
with: | |
version: ${{ matrix.swift }} | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Swift Version | |
run: swift --version | |
- name: Test (Debug) | |
run: swift test --configuration debug --enable-code-coverage | |
- name: Test (Release) | |
run: swift test --configuration release -Xswiftc -enable-testing --enable-code-coverage | |
- name: Coverage Report | |
uses: maxep/[email protected] | |
test-macOS: | |
name: Test macOS | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Swift | |
uses: slashmo/[email protected] | |
with: | |
version: 6.0.2 | |
- name: Swift Version | |
run: swift --version | |
- name: Test (Debug) | |
run: swift test --configuration debug --enable-code-coverage | |
- name: Test (Release) | |
run: swift test --configuration release -Xswiftc -enable-testing --enable-code-coverage |