🆕 feat(Tooltip): add Text
parameter to simplify the use of displaying text
#237
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 | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- docs/** | |
- src/** | |
workflow_dispatch: | |
jobs: | |
pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: git pull | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- run: git submodule foreach git checkout main | |
- name: setting dotnet | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: | | |
6.0.x | |
7.0.x | |
8.0.x | |
9.0.x | |
include-prerelease: true | |
- name: setting tools | |
run: dotnet workload install wasm-tools | |
- name: check tools | |
run: dotnet workload list | |
- name: build | |
run: dotnet build Masa.Blazor.sln | |
- name: test | |
run: dotnet test test/Masa.Blazor.Test/Masa.Blazor.Test.csproj |