Fixed icons in docs #656
This file contains hidden or 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 Core | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: windows-2022 | |
| strategy: | |
| matrix: | |
| dotnet-version: [8, 9, 10] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup dotnet ${{ matrix.dotnet-version }}.0.x | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: | | |
| 10.0.x | |
| ${{ matrix.dotnet-version }}.0.x | |
| - name: Install dependencies | |
| run: dotnet restore | |
| working-directory: ./src/Blazor-ApexCharts | |
| - name: Build | |
| run: dotnet build --configuration Release --no-restore --framework net${{ matrix.dotnet-version }}.0 | |
| working-directory: ./src/Blazor-ApexCharts |