Skip to content

Update dependency Aspire.Hosting to v9 - autoclosed #55

Update dependency Aspire.Hosting to v9 - autoclosed

Update dependency Aspire.Hosting to v9 - autoclosed #55

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
env:
BUILD_CONFIG: 'Release'
SOLUTION: 'Aspire.Hosting.Krakend.sln'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Setup .NET
uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4
with:
dotnet-version: '8.0.x'
- name: Build
run: dotnet build $SOLUTION --configuration $BUILD_CONFIG /p:ContinuousIntegrationBuild=true
- name: Test
run: dotnet test --configuration $BUILD_CONFIG --no-restore --no-build --verbosity normal