Bump Microsoft.AspNetCore.Components from 6.0.3 to 6.0.25 in /src/Blazored.Typeahead #57
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: | |
PROJECT_NAME: Blazored.Typeahead | |
NETCORE_VERSION: '6.0.x' | |
jobs: | |
build: | |
name: Build and test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setting up .NET Core SDK ${{ env.NETCORE_VERSION }}... | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: ${{ env.NETCORE_VERSION }} | |
- name: Restoring packages... | |
run: dotnet restore | |
- name: Building project... | |
run: dotnet build --configuration Release --no-restore src/$PROJECT_NAME/$PROJECT_NAME.csproj | |
- name: Testing... | |
run: dotnet test --no-restore --verbosity normal |