Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Workflowcore nuget package #62

Workflowcore nuget package

Workflowcore nuget package #62

Workflow file for this run

name: Run tests
on:
pull_request:
paths-ignore:
- '**/*.md'
push:
paths-ignore:
- '**/*.md'
branches:
- master
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- category: Unit
cmd: test/WorkflowCore.UnitTests
- category: Integration
cmd: test/WorkflowCore.IntegrationTests
- category: MongoDB
cmd: test/WorkflowCore.Tests.MongoDB
- category: MySQL
cmd: test/WorkflowCore.Tests.MySQL
- category: PostgreSQL
cmd: test/WorkflowCore.Tests.PostgreSQL
- category: Redis
cmd: test/WorkflowCore.Tests.Redis
- category: SqlServer
cmd: test/WorkflowCore.Tests.SqlServer
- category: ElasticSearch
cmd: test/WorkflowCore.Tests.Elasticsearch
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: ${{ matrix.category }} Tests
run: dotnet test ${{ matrix.cmd }} --no-build --verbosity normal -p:ParallelizeTestCollections=false