Skip to content

Test merge for actions #3

Test merge for actions

Test merge for actions #3

Workflow file for this run

name: .NET CI
on:
push:
paths-ignore:
- '**.md'
- '.github/**'
pull_request:
branches: [ master, main ]
paths-ignore:
- '**.md'
- '.github/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build Nuget Versions
run: dotnet build ./tools/Explicit.NuGet.Versions/Explicit.NuGet.Versions.sln
- name: Build Release
run: dotnet build Castle.Windsor.sln -c Release
- name: Castle.Windsor.Tests
run: dotnet test src/Castle.Windsor.Tests
- name: Castle.Windsor.Extensions.DependencyInjection.Tests
run: dotnet test src/Castle.Windsor.Extensions.DependencyInjection.Tests
- name: Castle.Facilities.AspNetCore.Tests
run: dotnet test src/Castle.Facilities.AspNetCore.Tests
- name: Castle.Facilities.AspNet.SystemWeb.Tests
run: dotnet test src/Castle.Facilities.AspNet.SystemWeb.Tests
- name: Castle.Facilities.AspNet.Mvc.Tests
run: dotnet test src/Castle.Facilities.AspNet.Mvc.Tests
- name: Castle.Facilities.AspNet.WebApi.Tests
run: dotnet test src/Castle.Facilities.AspNet.WebApi.Tests
- name: Castle.Facilities.WcfIntegration.Tests
run: dotnet test src/Castle.Facilities.WcfIntegration.Tests