Skip to content

Update devopsfaith/krakend Docker tag to v2.7.1 (#18) #30

Update devopsfaith/krakend Docker tag to v2.7.1 (#18)

Update devopsfaith/krakend Docker tag to v2.7.1 (#18) #30

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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup .NET
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # 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