Skip to content

[ODS-6173] Update EdFi.Common to .NET 8 #737

[ODS-6173] Update EdFi.Common to .NET 8

[ODS-6173] Update EdFi.Common to .NET 8 #737

name: EdFi.Common Pull request build and test
on:
workflow_dispatch:
pull_request:
branches:
- main-6x
paths:
- Application/EdFi.Common/**/*
- tests/EdFi.Common.UnitTests/**/*
- tests/EdFi.TestFixture/**/*
env:
INFORMATIONAL_VERSION: "6.2"
CONFIGURATION: "Release"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2
- name: build
run: |
.\build.githubactions.ps1 build -Configuration ${{ env.CONFIGURATION }} -InformationalVersion ${{ env.INFORMATIONAL_VERSION}} -BuildCounter ${{ github.run_number }} -Solution "Application/EdFi.Common/EdFi.Common.sln" -ProjectFile "Application/EdFi.Common/EdFi.Common.csproj"
shell: pwsh
- name: Run Unit tests
run: |
.\build.githubactions.ps1 test -Configuration ${{ env.CONFIGURATION }} -Solution "Application/EdFi.Common/EdFi.Common.sln" -ProjectFile "Application/EdFi.Common/EdFi.Common.csproj"
shell: pwsh