mirror of
https://github.com/SabreTools/SabreTools.RedumpLib.git
synced 2026-02-03 21:30:29 +00:00
24 lines
477 B
YAML
24 lines
477 B
YAML
name: Build PR
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v5
|
|
with:
|
|
dotnet-version: |
|
|
8.0.x
|
|
9.0.x
|
|
10.0.x
|
|
|
|
- name: Build
|
|
run: dotnet build
|
|
|
|
- name: Run tests
|
|
run: dotnet test
|