Skip to content

It is global position in FromSucess. #288

It is global position in FromSucess.

It is global position in FromSucess. #288

Workflow file for this run

name: "PR Build and test"
on:
workflow_dispatch:
pull_request:
paths-ignore:
- docs/**
jobs:
event_file:
name: "Event File"
runs-on: ubuntu-latest
steps:
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Event File
path: ${{ github.event_path }}
build-and-test:
name: "Build and test"
runs-on: ubuntu-latest
env:
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
TC_CLOUD_TOKEN: ${{ secrets.TC_TOKEN }}
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
9.0.x
dotnet-quality: 'preview'
-
name: Build
run: |
dotnet build -c "Debug CI"
-
name: Prepare Testcontainers Cloud agent
if: env.TC_CLOUD_TOKEN != ''
uses: atomicjar/testcontainers-cloud-setup-action@main
-
name: Run tests
run: |
dotnet test -c "Debug CI" --no-build
-
name: Upload Test Results
if: always()
uses: actions/upload-artifact@v4
with:
name: Test Results ${{ matrix.dotnet }}
path: |
test-results/**/*.xml
test-results/**/*.trx
test-results/**/*.json