Skip to content

CI πŸ” refactor(documentation): comments for clarity and conciseness across multiple files #4

CI πŸ” refactor(documentation): comments for clarity and conciseness across multiple files

CI πŸ” refactor(documentation): comments for clarity and conciseness across multiple files #4

Workflow file for this run

name: CI
run-name: CI πŸ” ${{ github.event.pull_request.title }}
on:
pull_request:
concurrency:
group: ci-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
name: Tests dotnet ${{ matrix.dotnet-version }}
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
dotnet-version: [10]
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Build projects
shell: bash
run: dotnet build ./all.csproj -f net${{ matrix.dotnet-version }}.0
- name: Run tests
shell: bash
run: dotnet test ./all.csproj /p:BuildTestsOnly=true --no-build -f net${{ matrix.dotnet-version }}.0 -- RunConfiguration.MaxCpuCount=1