Skip to content

Change pipeline workflow (#59) #208

Change pipeline workflow (#59)

Change pipeline workflow (#59) #208

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
name: Build the entire solution
uses: ./.github/workflows/workflow-build.yml
tests:
name: Run Unit Tests
needs: build
uses: ./.github/workflows/workflow-tests.yml
e2e-tests:
name: Run End To End Tests
needs: build
uses: ./.github/workflows/workflow-e2e-tests.yml