Files
SabreTools.Matching/.github/workflows/check_pr.yml
2024-12-16 12:14:32 -05:00

21 lines
322 B
YAML

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: 9.0.x
- name: Build
run: dotnet build
- name: Run tests
run: dotnet test