Skip to content

Bump GitVersion.MsBuild from 5.12.0 to 6.0.4 #59

Bump GitVersion.MsBuild from 5.12.0 to 6.0.4

Bump GitVersion.MsBuild from 5.12.0 to 6.0.4 #59

name: Continuous Integration Check
on:
pull_request:
branches: [ main ]
workflow_dispatch:
permissions: read-all
env:
GH_PKG_USER: ${{ secrets.GH_PKG_USER }}
GH_PKG_TOKEN: ${{ secrets.GH_PKG_TOKEN }}
jobs:
ci:
name: Continuous Integration Check
runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build --verbosity normal