SP-19185 portrait comparison #261
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: run smoke test | |
on: | |
pull_request: | |
branches: | |
- develop | |
- master | |
- stable | |
jobs: | |
run_smoke_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
8.0.x | |
- name: Build | |
run: | | |
dotnet build src/Regula.DocumentReader.NetCoreExample -c Release | |
dotnet build src/Regula.DocumentReader.NetCoreExamplePortraitComparison -c Release | |
- name: Run basic sample | |
run: ./Regula.DocumentReader.NetCoreExample | |
working-directory: src/Regula.DocumentReader.NetCoreExample/bin/Release/net8.0/ | |
- name: Run Portrait comparison | |
run: ./Regula.DocumentReader.NetCoreExamplePortraitComparison | |
working-directory: src/Regula.DocumentReader.NetCoreExamplePortraitComparison/bin/Release/net8.0/ |