Files
Adam Hathcock ec33decbd7 rename job
2024-05-22 09:35:01 +01:00

23 lines
460 B
YAML

name: "Check Build"
on:
pull_request:
jobs:
check-build:
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Debug --no-restore