Skip to content

docs: update README with refactored services and PATCH endpoint #9

docs: update README with refactored services and PATCH endpoint

docs: update README with refactored services and PATCH endpoint #9

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop, 'feature/**' ]
pull_request:
branches: [ main, develop ]
env:
DOTNET_VERSION: '8.0.x'
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Run Tests
run: dotnet test --no-build --configuration Release --verbosity minimal
- name: Run Integration Tests
run: dotnet test --no-build --configuration Release BankingKata.Api.Tests/BankingKata.Api.Tests.csproj --verbosity minimal