We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e00d53b commit 2fe3916Copy full SHA for 2fe3916
.github/workflows/dotnet.yml
@@ -55,6 +55,22 @@ jobs:
55
run: dotnet build --no-restore
56
- name: MongoDB Tests
57
run: dotnet test test/WorkflowCore.Tests.MongoDB --no-build --verbosity normal -p:ParallelizeTestCollections=false
58
+ MySQL-Tests:
59
+ runs-on: ubuntu-latest
60
+ steps:
61
+ - uses: actions/checkout@v2
62
+ - name: Setup .NET
63
+ uses: actions/setup-dotnet@v1
64
+ with:
65
+ dotnet-version: |
66
+ 3.1.x
67
+ 6.0.x
68
+ - name: Restore dependencies
69
+ run: dotnet restore
70
+ - name: Build
71
+ run: dotnet build --no-restore
72
+ - name: MySQL Tests
73
+ run: dotnet test test/WorkflowCore.Tests.MySQL --no-build --verbosity normal -p:ParallelizeTestCollections=false
74
PostgreSQL-Tests:
75
runs-on: ubuntu-latest
76
steps:
0 commit comments