- fixed multiple issues #590
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: .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 |