Skip to content

Add CLR CI workflow

Add CLR CI workflow #1

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
dotnet:
name: .NET build and tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Restore
run: dotnet restore pd-vm-clr.sln
- name: Build
run: dotnet build pd-vm-clr.sln --no-restore --configuration Release
- name: Tests
run: dotnet test pd-vm-clr.sln --no-build --configuration Release --verbosity normal