Skip to content

Commit

Permalink
Add CI github workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
jskripsky committed Oct 25, 2023
1 parent a34ab8c commit 0872569
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI

on: push

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.x'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build

0 comments on commit 0872569

Please sign in to comment.