Add GitHub Pages routing #5
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: Pull Request | |
# on: | |
# pull_request: | |
# branches: | |
# - test3 | |
# jobs: | |
# buildAndUnitTest: | |
# strategy: | |
# matrix: | |
# os: [ windows-latest, ubuntu-latest, macos-latest ] | |
# fail-fast: false | |
# runs-on: ${{ matrix.os }} | |
# env: | |
# SOLUTION_PATH: 'Blockcore.Explorer.sln' | |
# BUILD_CONFIGURATION: 'Release' | |
# steps: | |
# - uses: actions/checkout@v1 | |
# - name: Setup dotnet | |
# uses: actions/setup-dotnet@v1 | |
# with: | |
# dotnet-version: | | |
# 6.0.x | |
# # - name: Setup .NET Core | |
# # uses: actions/setup-dotnet@v1 | |
# # with: | |
# # dotnet-version: '3.1.301' | |
# - name: Restore | |
# run: dotnet restore ${{env.SOLUTION_PATH}} | |
# - name: Build | |
# run: dotnet build -c ${{env.BUILD_CONFIGURATION}} -v m ${{env.SOLUTION_PATH}} | |
# - name: Unit Test | |
# run: dotnet test -v=normal --no-build --filter FullyQualifiedName!~IntegrationTests -c ${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_PATH}} |