Hotfix/v0.8.3 #1054
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test PR | |
on: | |
pull_request: | |
branches: [ '**' ] | |
jobs: | |
build: | |
name: Build and Test PR | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Install Swashbuckle CLI | |
shell: powershell | |
run: dotnet tool install -g Swashbuckle.AspNetCore.Cli | |
- name: Install dependencies | |
run: dotnet restore | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: csproj | |
path: Kavita.Common/Kavita.Common.csproj | |
- name: Test | |
run: dotnet test --no-restore --verbosity normal |