Skip to content

Update README.md (#304) #302

Update README.md (#304)

Update README.md (#304) #302

Workflow file for this run

name: CI Pipeline
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: Build and run Unit and Architecture Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Run build
run: ./build.sh BuildAndUnitTests --configuration Release
integration:
name: Build and run Integration Tests
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Run build
run: ./build.sh RunAllIntegrationTests