0
0
mirror of https://github.com/alex289/CleanArchitecture.git synced 2025-06-30 02:31:08 +00:00

Add CI workflow

This commit is contained in:
Alex 2023-03-06 19:07:38 +01:00 committed by GitHub
parent b58c74c666
commit 7fbfb4c7a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

25
.github/workflows/dotnet.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.x.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal