Skip to content

feat(scdb): Phase 3 COMPLETE - WAL & Recovery #248

feat(scdb): Phase 3 COMPLETE - WAL & Recovery

feat(scdb): Phase 3 COMPLETE - WAL & Recovery #248

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
env:
DOTNET_VERSION: '10.0.x'
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_NOLOGO: true
jobs:
build:
name: Build & Test
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Restore dependencies
run: dotnet restore SharpCoreDB.CI.slnf
- name: Build
run: dotnet build SharpCoreDB.CI.slnf --configuration Release --no-restore
- name: Test
run: dotnet test SharpCoreDB.CI.slnf --configuration Release --no-build --verbosity normal --logger trx --collect:"XPlat Code Coverage" -- xunit.parallelizeTestCollections=false
timeout-minutes: 10
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results-${{ matrix.os }}
path: '**/TestResults/**/*.trx'
if-no-files-found: ignore
- name: Upload coverage
if: matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v4
with:
files: '**/TestResults/**/coverage.cobertura.xml'
flags: unittests
name: codecov-umbrella
fail_ci_if_error: false