Skip to content

docs: update changelog #19

docs: update changelog

docs: update changelog #19

Workflow file for this run

name: Build
on:
push:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
- uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: nuget-${{ hashFiles('**/*.csproj') }}
restore-keys: |
nuget-
- name: Install dependencies
run: |
dotnet restore
- name: Build
run: |
dotnet build --no-restore