Skip to content

Commit

Permalink
Add a compile-check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
psyGamer committed Feb 2, 2024
1 parent 001fbea commit d000379
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build
on:
workflow_dispatch:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup .NET 8
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'
- name: Build
run: dotnet publish -c Release

0 comments on commit d000379

Please sign in to comment.