8000 Update github action to only run unit tests 👷 · hognevevle/notion-sdk-net@8b769ab · GitHub
[go: up one dir, main page]

Skip to content

Commit 8b769ab

Browse files
Update github action to only run unit tests 👷
1 parent 91b5528 commit 8b769ab

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

‎.github/workflows/ci-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ jobs:
3434
run: dotnet build --no-restore
3535

3636
- name: Test
37-
run: dotnet test --no-build --verbosity normal
37+
run: dotnet test --filter "FullyQualifiedName~Notion.UnitTests" --no-build --verbosity normal

‎.github/workflows/publish-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: dotnet build --no-restore -c Release
2828

2929
- name: Test
30-
run: dotnet test -c Release --no-build --verbosity normal
30+
run: dotnet test -c Release --filter "FullyQualifiedName~Notion.UnitTests" --no-build --verbosity normal
3131

3232
- name: Pack solution [Release]
3333
run: |

‎.github/workflows/test-publish-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: dotnet build --no-restore -c Release
3131

3232
- name: Test
33-
run: dotnet test -c Release --no-build --verbosity normal
33+
run: dotnet test --filter "FullyQualifiedName~Notion.UnitTests" -c Release --no-build --verbosity normal
3434

3535
- name: Pack solution [Release]
3636
run: |

0 commit comments

Comments
 (0)
0