Skip to content

Add vDSP_vrampD

Add vDSP_vrampD #22

Workflow file for this run

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