refactor: refactor mongo connection #210
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
# This workflow will build a Swift project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift | |
name: Test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
# Allow one concurrent deployment | |
concurrency: | |
group: "testing" | |
cancel-in-progress: true | |
jobs: | |
macos-unit: | |
runs-on: macOS-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Switch Xcode 🔄 | |
run: sudo xcode-select --switch /Applications/Xcode_15.0.app | |
- name: Test macOS | |
run: xcodebuild test -scheme fs-app-health-checks -destination "platform=macOS" -enableCodeCoverage YES | |
- name: Fetch Coverage | |
uses: sersoft-gmbh/swift-coverage-action@v4 | |
id: coverage-files | |
- name: Publish Coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
files: ${{ join(fromJSON(steps.coverage-files.outputs.files), ',') }} | |
linux-unit: | |
runs-on: ubuntu-latest | |
container: swift:jammy | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: swift build -v | |
- name: Run tests | |
run: swift test -v |