Skip to content

ci: update CI (dotnet 10.0.x, workflow_dispatch, stack=dotnet) #1

ci: update CI (dotnet 10.0.x, workflow_dispatch, stack=dotnet)

ci: update CI (dotnet 10.0.x, workflow_dispatch, stack=dotnet) #1

Workflow file for this run

name: CI
on:
push:
branches: [develop]
pull_request:
branches: [develop]
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- run: dotnet restore
- run: dotnet build --no-restore -c Release
- run: dotnet test --no-build -c Release --no-restore
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1