Skip to content

Merge pull request #1 from Yellow-Dog-Man/feat-ci #2

Merge pull request #1 from Yellow-Dog-Man/feat-ci

Merge pull request #1 from Yellow-Dog-Man/feat-ci #2

Workflow file for this run

name: Build Library
on:
push:
paths-ignore:
- '**/*.md'
branches:
- main
pull_request:
branches:
- main
paths-ignore:
- '**/*.md'
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore