Skip to content

First pass at getting CI/CD going. #1

First pass at getting CI/CD going.

First pass at getting CI/CD going. #1

Workflow file for this run

name: Build Library
on:
push:
paths-ignore:
- '**/*.md'
branches:
- master
pull_request:
branches:
- master
paths-ignore:
- '**/*.md'
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET 8
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore