Skip to content

FFT: Improve performance by reducing length checks #103

FFT: Improve performance by reducing length checks

FFT: Improve performance by reducing length checks #103

Workflow file for this run

name: CI/CD
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build and Test
runs-on: windows-latest
steps:
- name: 🛒 Checkout
uses: actions/checkout@v2
- name: ✨ Setup .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: "6.0.x"
- name: 🚚 Restore
run: dotnet restore src
- name: 🛠️ Build
run: dotnet build src --configuration Release --no-restore
- name: 🧪 Test
run: dotnet test src --configuration Release --no-build