bump integration test runner version

This commit is contained in:
Eliot Jones 2023-05-17 20:34:10 +01:00
parent 35ff13732e
commit 23aeb66566
2 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@ name: Run Integration Tests
on:
push:
branches: [ master ]
branches: [master]
workflow_dispatch:
jobs:
@ -12,9 +12,9 @@ jobs:
- uses: actions/checkout@v2
- name: Set up dotnet core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: "2.1.x"
dotnet-version: "6.0.x"
- name: Restore cached part 1
id: restore-cache-p1
@ -53,4 +53,4 @@ jobs:
run: sudo apt-get install p7zip-full && cd archive && 7z x part1-archive.7z && 7z x part2-archive.7z && 7z x part3-archive.7z
- name: Run tests
run: dotnet run --project tools/UglyToad.PdfPig.ConsoleRunner/UglyToad.PdfPig.ConsoleRunner.csproj "archive/"
run: dotnet run --project tools/UglyToad.PdfPig.ConsoleRunner/UglyToad.PdfPig.ConsoleRunner.csproj "archive/"

View File

@ -3,7 +3,7 @@
<PropertyGroup>
<LangVersion>latest</LangVersion>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>net6</TargetFramework>
</PropertyGroup>
<ItemGroup>