Skip to content

feat: add GetContainerType API and fix code quality issues #18

feat: add GetContainerType API and fix code quality issues

feat: add GetContainerType API and fix code quality issues #18

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['8.0.x', '10.0.x']
steps:
- uses: actions/checkout@v6
- name: Setup .NET ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v5
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test (unit only)
run: dotnet test --no-build --configuration Release --filter "Category!=Integration" --verbosity normal
integration-tests:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --configuration Release
- name: Integration tests
run: dotnet test --configuration Release --filter "Category=Integration" --verbosity normal
continue-on-error: true # TSA servers may be temporarily unavailable