Skip to content

Merge branch 'dev' into feat/net-8.0 #341

Merge branch 'dev' into feat/net-8.0

Merge branch 'dev' into feat/net-8.0 #341

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: Build
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-
- run: dotnet restore --locked-mode
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test