Skip to content

Commit

Permalink
Merge pull request #1 from ntohq/InitProjectStructure
Browse files Browse the repository at this point in the history
Create `Katharos` Initial `DotNet` Project Structure
  • Loading branch information
wesdevpro authored Mar 9, 2024
2 parents 8f24398 + 862f784 commit 2b661aa
Show file tree
Hide file tree
Showing 132 changed files with 35,584 additions and 1 deletion.
32 changes: 32 additions & 0 deletions .github/workflows/dotnet-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: Ensure .NET Project Builds

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

env:
DOTNET_CORE_VERSION: 8.0.x
WORKING_DIRECTORY: ./src/

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_CORE_VERSION }}
- name: Restore dependencies
run: dotnet restore "${{ env.WORKING_DIRECTORY }}"
- name: Build
run: dotnet build "${{ env.WORKING_DIRECTORY }}" --no-restore
- name: Test
run: dotnet test "${{ env.WORKING_DIRECTORY }}" --no-build --verbosity normal
Loading

0 comments on commit 2b661aa

Please sign in to comment.