Fix CS8632 nullable annotation warnings for Unity 2021 #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |