Skip to content

Merge pull request #14 from maliming/net8 #26

Merge pull request #14 from maliming/net8

Merge pull request #14 from maliming/net8 #26

Workflow file for this run

name: .NET Core
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build with dotnet
run: dotnet build -c Release
- name: Test with dotnet
run: dotnet test --no-restore