Skip to content

Commit

Permalink
Create dotnetcore.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamedelareeg authored Jan 2, 2024
1 parent 507eb25 commit ed71141
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: .NET Core

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

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.100'
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Test with dotnet
run: dotnet test ./CleanArchitecture.sln --configuration Release

0 comments on commit ed71141

Please sign in to comment.