Skip to content

[ODS-6167] Migrate Ed-Fi-Ods solution to .Net 8 #1485

[ODS-6167] Migrate Ed-Fi-Ods solution to .Net 8

[ODS-6167] Migrate Ed-Fi-Ods solution to .Net 8 #1485

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