mirror of
https://github.com/9p4/jellyfin-plugin-sso.git
synced 2026-01-20 21:39:28 -05:00
26 lines
473 B
YAML
26 lines
473 B
YAML
name: .NET
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v1
|
|
with:
|
|
dotnet-version: 6.0.x
|
|
- name: Restore dependencies
|
|
run: dotnet restore
|
|
- name: Build
|
|
run: dotnet build --no-restore --warnaserror
|
|
- name: Test
|
|
run: dotnet test --no-build --verbosity normal
|