Skip to content

Merge pull request #8 from wo80/develop #10

Merge pull request #8 from wo80/develop

Merge pull request #8 from wo80/develop #10

Workflow file for this run

# This workflow will build a .NET project
name: .NET
on:
push:
branches: [ "master", "develop" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Install FFTW
run: sudo apt-get install libfftw3-bin
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal