Skip to content

Bump the radzen group with 1 update #136

Bump the radzen group with 1 update

Bump the radzen group with 1 update #136

Workflow file for this run

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