Add vDSP_vrampD
#22
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: Lint, Build & Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: swift:noble | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Lint | |
run: swift-format lint --recursive --strict --parallel . | |
- name: Install BLAS & LAPACK | |
run: apt-get update && apt-get install -y libopenblas-dev liblapacke-dev | |
- name: Build | |
run: swift build | |
- name: Test | |
run: swift test |