Skip to content

update tests and benchmarks to .net10 #18

update tests and benchmarks to .net10

update tests and benchmarks to .net10 #18

Workflow file for this run

name: Main
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Build
run: dotnet build --configuration Release
- name: Run tests
run: dotnet test
- name: Generate NuGet
run: dotnet pack -o package /p:Version=$(date "+%-Y.%-m.%-d")
working-directory: src
- uses: actions/[email protected]
with:
name: nugets
path: src/package/*.nupkg