.NET (prod test) #232
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 (prod test) | |
on: | |
workflow_call: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- ".github/workflows/test-dotnet.yml" | |
- "dotnet/**" | |
schedule: | |
- cron: '0 9 * * WED' # https://crontab.guru/#0_9_*_*_WED | |
jobs: | |
prod-test-net: | |
name: .NET - samples - prod test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macos-latest ] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-dotnet@v3 | |
with: | |
global-json-file: dotnet/global.json | |
- name: Blazor build | |
run: dotnet build | |
shell: pwsh | |
working-directory: dotnet/Blazor | |
- name: Vaccination Test | |
run: | | |
dotnet run | |
shell: pwsh | |
working-directory: dotnet/VaccinationSample |