Skip to content

Fix CS8632 nullable annotation warnings for Unity 2021 #5

Fix CS8632 nullable annotation warnings for Unity 2021

Fix CS8632 nullable annotation warnings for Unity 2021 #5

Workflow file for this run

name: Tests
on:
push:
branches: [ main, master, feat/*, fix/* ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore tests/Needle.Engine.TypescriptCodegen.Tests.csproj
- name: Build
run: dotnet build tests/Needle.Engine.TypescriptCodegen.Tests.csproj --no-restore
- name: Run tests
run: dotnet test tests/Needle.Engine.TypescriptCodegen.Tests.csproj --no-build --verbosity normal