Skip to content

Addons Database Tests #16

Addons Database Tests

Addons Database Tests #16

name: Addons Database Tests
on:
workflow_run:
workflows: ["Build and test"]
types:
- completed
branches:
- master
workflow_dispatch:
jobs:
test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test Addons Database
env:
MINIO_ACCESS_KEY: ${{ secrets.MINIO_ACCESS_KEY }}
MINIO_SECRET_KEY: ${{ secrets.MINIO_SECRET_KEY }}
run: dotnet test ./src/Tests.Database/Tests.Database.csproj --no-build --verbosity normal