Skip to content

Replace Valkey with DragonFly as session store and caching solution #132

Replace Valkey with DragonFly as session store and caching solution

Replace Valkey with DragonFly as session store and caching solution #132

Workflow file for this run

name: PR Validation
on:
pull_request:
branches:
- main
- master
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: Restore dependencies
env:
RESTORE_TOOLS: '0'
HUSKY: '0'
run: dotnet restore APITemplate.slnx
- name: Build
env:
RESTORE_TOOLS: '0'
HUSKY: '0'
run: dotnet build APITemplate.slnx --no-restore --configuration Release
- name: Run tests
env:
RESTORE_TOOLS: '0'
HUSKY: '0'
run: dotnet test APITemplate.slnx --no-build --no-restore --configuration Release --verbosity normal