Bump the radzen group with 1 update #136
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: CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["**"] | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| global-json-file: global.json | |
| cache: true | |
| cache-dependency-path: src/*/packages.lock.json | |
| - name: Restore dependencies | |
| run: dotnet restore ObjeX.slnx | |
| - name: Build | |
| run: dotnet build ObjeX.slnx --no-restore --configuration Release | |
| - name: Test | |
| run: dotnet test ObjeX.slnx --no-build --configuration Release --verbosity normal |