Skip to content

Merge pull request #13 from Aiko-IT-Systems/renovate/databasewrapper.… #98

Merge pull request #13 from Aiko-IT-Systems/renovate/databasewrapper.…

Merge pull request #13 from Aiko-IT-Systems/renovate/databasewrapper.… #98

Workflow file for this run

name: "Build Library"
on:
push:
branches:
- main
pull_request:
merge_group:
workflow_dispatch:
env:
DOTNET_NOLOGO: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: true
jobs:
build:
timeout-minutes: 30
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
dotnet: [7.0.400]
runs-on: ${{ matrix.os }}
name: Build library
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore dependencies
run: dotnet restore
- name: Build library
run: dotnet build -c Release -v normal --no-restore
- name: Test library
run: dotnet test -v normal -c Release --no-restore --no-build