Skip to content

Commit

Permalink
Template created
Browse files Browse the repository at this point in the history
  • Loading branch information
Hijtec committed Jan 15, 2025
0 parents commit b2876ba
Show file tree
Hide file tree
Showing 15 changed files with 950 additions and 0 deletions.
448 changes: 448 additions & 0 deletions .editorconfig

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions .github/workflows/dotnetBuildProject.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: .NET

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
build-csharp1:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies C#1
run: dotnet restore
working-directory: src
- name: Build C#1
run: dotnet build --no-restore
working-directory: src
- name: Test C#1
run: dotnet test --no-build --verbosity normal
working-directory: src
Loading

0 comments on commit b2876ba

Please sign in to comment.