Update RoveComm submodule to the latest commit #10
Workflow file for this run
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 Tests | |
on: | |
push: | |
branches: | |
- development | |
pull_request: | |
branches: | |
- development | |
jobs: | |
test: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Set up Swift | |
uses: fwal/setup-swift@v2 | |
with: | |
swift-version: '5.10' | |
- name: Build and run tests | |
run: swift test | |
- name: Archive test results | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-results | |
path: .build/debug/TestResults.xcresult | |
- name: Upload test coverage report | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-coverage | |
path: .build/debug/codecov | |