Skip to content

chore(deps): bump astro from 6.0.4 to 6.0.8 in /docs #32

chore(deps): bump astro from 6.0.4 to 6.0.8 in /docs

chore(deps): bump astro from 6.0.4 to 6.0.8 in /docs #32

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
paths:
- 'src/**'
- 'examples/**'
- 'Directory.Build.props'
- '.editorconfig'
- 'OpenApiCodeGenerator.slnx'
- 'nuget.config'
- '.github/workflows/build.yml'
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
env:
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
cache: true
cache-dependency-path: 'Directory.Packages.props'
- name: Restore dependencies
run: dotnet restore
working-directory: ./
- name: Build
run: dotnet build --no-restore --configuration Release
working-directory: ./
- name: Test
run: dotnet test --no-build --configuration Release --verbosity normal
working-directory: ./