Skip to content

Fixes #33 / Updated csproj file. Updated yml files with new dotnet command fixed… #43

Fixes #33 / Updated csproj file. Updated yml files with new dotnet command fixed…

Fixes #33 / Updated csproj file. Updated yml files with new dotnet command fixed… #43

Workflow file for this run

name: CI Build
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Validate Build
env:
solution-path: './src/NetCoreUtilities.UnitTesting.sln'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Ensure .NET Installed
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Install GitVersion
run: dotnet tool install --global GitVersion.Tool --version 5.12.0
- name: Determine Version
id: gitversion
uses: gittools/actions/gitversion/execute@v0.10.2
with:
useConfigFile: true
- name: Restore Packages
run: dotnet restore "${{ env.solution-path }}"
- name: Build
run: dotnet build "${{ env.solution-path }}" --no-restore --configuration Release -p:version=${{ steps.gitversion.outputs.majorMinorPatch }}