Skip to content

array version, benchmark, tests #5

array version, benchmark, tests

array version, benchmark, tests #5

Workflow file for this run

name: Run Tests on Push
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '9.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Run tests
run: dotnet test SieveCache.Tests/SieveCache.Tests.csproj --no-build --configuration Release --verbosity normal