feat!: Use separate methods for different correlation coefficients #139
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: Test Suite | |
on: | |
pull_request: | |
branches: [ main ] | |
push: | |
branches: [ main ] | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_14.0.app | |
jobs: | |
macOS: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run macOS Tests | |
run: swift test -c release --parallel | |
Linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: swift-actions/setup-swift@v1 | |
with: | |
swift-version: '5.7' | |
- name: Run Linux Tests | |
run: swift test -c release --parallel |