Make the YAML linter build step ignore nullable warnings

Now it will run even if there are nullable warnings.
This commit is contained in:
DrSmugleaf
2021-03-15 17:23:57 +01:00
committed by GitHub
parent bd6b0db909
commit 666fb9e2af

View File

@@ -23,6 +23,6 @@ jobs:
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore /m
run: dotnet build --configuration Release --no-restore /p:WarningsAsErrors= /m
- name: Run Linter
run: dotnet run --project Content.YAMLLinter/Content.YAMLLinter.csproj --no-build