Skip to content

- fixed multiple issues #590

- fixed multiple issues

- fixed multiple issues #590

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
include-prerelease: true
- name: Restore Emv dependencies
run: dotnet restore
working-directory: Source\Terminal
- name: Build Emv
run: dotnet build --no-restore
working-directory: Source\Terminal
- name: Run Emv Tests
run: dotnet test --no-build --verbosity normal
working-directory: Source\Terminal
# - name: Restore Play Portal Dependencies
# run: dotnet restore
# working-directory: Source\PlayPortal
# - name: Build Play Portal
# run: dotnet build --no-restore
# working-directory: Source\PlayPortal