Skip to content

Commit

Permalink
Add PR check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mnadareski committed Feb 27, 2024
1 parent 3457b80 commit 871a3e6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/check_pr.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 871a3e6

Please sign in to comment.