Skip to content

Update RoveComm submodule to the latest commit #10

Update RoveComm submodule to the latest commit

Update RoveComm submodule to the latest commit #10

Workflow file for this run

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