Skip to content

Commit 7b25717

Browse files
committed
put tests in same job as build
1 parent cb13db7 commit 7b25717

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

.github/workflows/branches.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,12 @@ jobs:
2525
run: dotnet restore
2626
- name: Build solution
2727
run: dotnet build -c Release --no-restore
28+
- name: Run tests
29+
run: dotnet test -c Release --no-build
2830
- name: Create NuGet packages
2931
run: dotnet pack -c Release --no-build -o nupkg
3032
- name: Upload nuget packages
3133
uses: actions/upload-artifact@v1
3234
with:
3335
name: nupkg
3436
path: nupkg
35-
36-
test:
37-
name: Test
38-
needs: [build]
39-
runs-on: ubuntu-latest
40-
steps:
41-
- name: Checkout
42-
uses: actions/checkout@v2
43-
- name: Run tests
44-
run: dotnet test -c Release

FluentAssertions.Reactive.sln

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
2020
.gitattributes = .gitattributes
2121
.gitignore = .gitignore
2222
GitVersion.yml = GitVersion.yml
23-
global.json = global.json
2423
README.md = README.md
2524
EndProjectSection
2625
EndProject

0 commit comments

Comments
 (0)