Skip to content

Bump Scalar.AspNetCore from 2.12.11 to 2.12.20 #11

Bump Scalar.AspNetCore from 2.12.11 to 2.12.20

Bump Scalar.AspNetCore from 2.12.11 to 2.12.20 #11

Workflow file for this run

name: .NET CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Restore dependencies
run: dotnet restore RustFS.Demo.slnx
- name: Build
run: dotnet build RustFS.Demo.slnx --no-restore
test:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Test
run: dotnet test tests/RustFS.Demo.Tests/RustFS.Demo.Tests.csproj --verbosity normal