Skip to content

Commit

Permalink
WIP Unit test actions
Browse files Browse the repository at this point in the history
  • Loading branch information
BurkusCat committed Oct 13, 2023
1 parent 16e2f98 commit 50623d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci-demo-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build Demo App for CI

on:
push:
branches: [ "main" ]
branches: [ "main", "workflow-improvements" ]
paths-ignore:
- "**.md"
pull_request:
Expand All @@ -24,4 +24,6 @@ jobs:
- name: Restore dependencies
run: dotnet restore samples\DemoApp\DemoApp.sln
- name: Build
run: dotnet build samples\DemoApp\DemoApp.sln -c Release
run: dotnet build samples\DemoApp\DemoApp.sln -c Release
- name: Build and Run UnitTests
run: dotnet test tests\DemoApp.UnitTests\DemoApp.UnitTests.csproj --no-build --no-restore --verbosity normal
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build for CI
name: Build Library for CI

on:
push:
Expand Down

0 comments on commit 50623d8

Please sign in to comment.