Skip to content

Adapt to breaking changes made by Jellyfin 10.9.x #140

Adapt to breaking changes made by Jellyfin 10.9.x

Adapt to breaking changes made by Jellyfin 10.9.x #140

Workflow file for this run

# Based on: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Setup yq
uses: vegardit/gha-setup-yq@v1
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal