Add mahalanobisDistance
#208
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: Run all D Tests and Codecov | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
name: Dub Tests | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
dc: [ldc-latest, ldc-beta, dmd-latest, dmd-beta] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/[email protected] | |
- name: D Compiler Installation | |
uses: dlang-community/[email protected] | |
with: | |
compiler: ${{ matrix.dc }} | |
- name: Run tests with coverage | |
run: dub -q test --build=unittest-cov | |
- name: Install Lapack | |
if: contains( matrix.os, 'ubuntu') | |
run: | | |
sudo apt-get update | |
sudo apt-get install libopenblas-dev | |
shell: bash | |
- name: Run Blas Tests with coverage | |
if: contains( matrix.os, 'ubuntu') | |
run: dub -q test --build=unittest-cov-blas --config=openblas | |
- name: Codecov | |
uses: codecov/[email protected] |