Skip to content

#367 - Improve job count by state query performance #51

#367 - Improve job count by state query performance

#367 - Improve job count by state query performance #51

Workflow file for this run

name: Verification build
on:
workflow_dispatch:
pull_request:
branches: ["master"]
paths:
- "src/**"
- "test/**"
permissions: write-all
jobs:
build-and-test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
POSTGRES_HOST_AUTH_METHOD: trust
TZ: UTC+13
PGTZ: UTC+13
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal --logger "trx;LogFileName=TestResults.trx"
- name: Test Report
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: test-results
path: "**/TestResults.trx"