Merge pull request #85 from swhitty/remove-swift5.7 #1089
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: build | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
xcode_15_3: | |
runs-on: macos-14 | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.3.app/Contents/Developer | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Version | |
run: swift --version | |
- name: Build | |
run: swift test --enable-code-coverage --filter do_not_test | |
- name: Test | |
run: swift test --enable-code-coverage --skip-build | |
- name: Gather code coverage | |
run: xcrun llvm-cov export -format="lcov" .build/debug/FlyingFoxPackageTests.xctest/Contents/MacOS/FlyingFoxPackageTests -instr-profile .build/debug/codecov/default.profdata > coverage_report.lcov | |
- name: Upload Coverage | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./coverage_report.lcov | |
xcode_15_2: | |
runs-on: macos-14 | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.2.app/Contents/Developer | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Version | |
run: swift --version | |
- name: Build | |
run: swift build --build-tests | |
- name: Test | |
run: swift test --skip-build | |
xcode_14_3_1: | |
runs-on: macos-13 | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_14.3.1.app/Contents/Developer | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Version | |
run: swift --version | |
- name: Build | |
run: swift build --build-tests | |
- name: Test | |
run: swift test --skip-build | |
linux_swift_5_10: | |
runs-on: ubuntu-latest | |
container: swift:5.10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Version | |
run: swift --version | |
- name: Build | |
run: swift build --build-tests | |
- name: Test | |
run: swift test --skip-build | |
linux_swift_5_9: | |
runs-on: ubuntu-latest | |
container: swift:5.9 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Version | |
run: swift --version | |
- name: Build | |
run: swift build --build-tests | |
- name: Test | |
run: swift test --skip-build | |
linux_swift_5_8: | |
runs-on: ubuntu-latest | |
container: swift:5.8 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Version | |
run: swift --version | |
- name: Build | |
run: swift build --build-tests | |
- name: Test | |
run: swift test --skip-build |