Skip to content

Workflow file for this run

name: Build and Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
container-job:
runs-on: ubuntu-latest
container: mcr.microsoft.com/dotnet/sdk:8.0
services:
postgres:
# Docker Hub image
image: postgres
# Provide the password for postgres
env:
POSTGRES_USER: admin
POSTGRES_PASSWORD: password
POSTGRES_DB: db
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- name: Restore, Build, and Test
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_NOLOGO: true
DB_HOST: postgres
run: |
cd templates
dotnet restore
dotnet build --no-restore
dotnet test --no-build --verbosity normal