Add GitHub action workflows

This commit is contained in:
Matt Nadareski
2024-02-28 16:31:28 -05:00
parent 2757c2f568
commit 11d024bd16
2 changed files with 67 additions and 0 deletions

17
.github/workflows/check_pr.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: Build PR
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build