⭐ Updated badges #29
Workflow file for this run
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: Build | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| types: | |
| - opened | |
| - reopened | |
| - edited | |
| - synchronize | |
| jobs: | |
| # Build source code | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| dotnet-version: [8.0.x] | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| # Setup .NET SDK | |
| - name: Set up .NET SDK ${{ matrix.dotnet-version }} | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: ${{ matrix.dotnet-version }} | |
| # Setup cake tool | |
| - name: Setup cake tool | |
| run: | | |
| dotnet tool install --global Cake.Tool | |
| # Build the project | |
| - name: Build project | |
| if: success() | |
| run: | | |
| # Copy Licence | |
| cp LICENSE NETCore.Keycloak.Client/ | |
| # Build project | |
| dotnet cake build.cake --target=build |