Skip to content

Different reference types: nullable and non-nullable #258

Different reference types: nullable and non-nullable

Different reference types: nullable and non-nullable #258

Workflow file for this run

name: Tools tests
# Triggers the workflow on pull request events that update the branch
on:
pull_request:
types: [opened, synchronize, reopened]
paths:
- '**.cs'
- '**.csproj'
- '**.sln'
workflow_dispatch:
inputs:
reason:
description: 'The reason for running the workflow'
required: true
default: 'Manual run'
jobs:
run-unit-tests:
runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: true
steps:
- name: Check out our repo
uses: actions/checkout@v2
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Run all tests
run: |
cd tools
dotnet test