Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianLfdr authored Dec 1, 2023
0 parents commit 3f3f30c
Show file tree
Hide file tree
Showing 17 changed files with 1,255 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: .NET CI

on:
push:
branches: [ main ]

defaults:
run:
working-directory: src/

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'
- run: dotnet restore
- run: dotnet build --no-restore
- run: dotnet test --no-build --verbosity normal
Loading

0 comments on commit 3f3f30c

Please sign in to comment.