Skip to content

Commit

Permalink
Base stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
hschwentner committed Jun 6, 2024
1 parent 0582bf6 commit 12ad686
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: DDD banking example in C# - CI

on: [ push, pull_request ]

jobs:
build:

runs-on: ubuntu-24.04

steps:
- name: Checkout source code
uses: actions/checkout@v4

- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'

- name: Install dependencies, build, and test 1
working-directory: "./1 Hands-on Legacy Code"
run: |
dotnet restore
dotnet build --configuration Release --no-restore
dotnet test --no-restore --verbosity normal
2 changes: 2 additions & 0 deletions 1 Hands-on Legacy Code/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
**/obj
**/bin
8 changes: 8 additions & 0 deletions 1 Hands-on Legacy Code/DDDBankingExample.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
EndGlobal

0 comments on commit 12ad686

Please sign in to comment.