Skip to content

Update CI.yml

Update CI.yml #31

Workflow file for this run

name: CI
on:
pull_request:
branches:
- "main"
push:
paths-ignore:
- "README.md"
- ".gitignore"
branches:
- "main"
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build