Skip to content

Chore(deps): Bump CodeOfChaos.CliArgsParser from 5.1.2 to 5.1.3 #12

Chore(deps): Bump CodeOfChaos.CliArgsParser from 5.1.2 to 5.1.3

Chore(deps): Bump CodeOfChaos.CliArgsParser from 5.1.2 to 5.1.3 #12


name: Dotnet Testing
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches: [ core ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.x'
- name: Restore dependencies
run: dotnet restore CodeOfChaos.GeneratorTools.slnx
- name: Build
run: dotnet build CodeOfChaos.GeneratorTools.slnx --configuration Release --no-restore -p:GeneratePackageOnBuild=false -p:IsPackable=false
- name: Run tests
run: dotnet test --solution CodeOfChaos.GeneratorTools.slnx --configuration Release --no-restore --no-build