Fixed an issue with z index on code blocks #4
Workflow file for this run
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: Build & Test PR | |
on: | |
pull_request: | |
branches: [ main ] | |
env: | |
DOTNET_VERSION: '8.0' | |
jobs: | |
build: | |
name: Build & Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup DotNet | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- name: Build | |
run: dotnet build -c Release src/PinguApps.Blazor.QRCode/PinguApps.Blazor.QRCode.csproj | |
- name: Test | |
run: dotnet test -c Release src/PinguApps.Blazor.QRCode.Tests/ |