Files
crystall-punk-14/.github/workflows/yaml-linter.yml
DrSmugleaf 666fb9e2af Make the YAML linter build step ignore nullable warnings
Now it will run even if there are nullable warnings.
2021-03-15 17:23:57 +01:00

29 lines
907 B
YAML

name: YAML Linter
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup submodule
run: |
git submodule update --init --recursive
touch BuildChecker/DISABLE_SUBMODULE_AUTOUPDATE
- name: Pull engine updates
uses: space-wizards/submodule-dependency@v0.1.5
- name: Update Engine Submodules
run: |
cd RobustToolbox/
git submodule update --init --recursive
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.100
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore /p:WarningsAsErrors= /m
- name: Run Linter
run: dotnet run --project Content.YAMLLinter/Content.YAMLLinter.csproj --no-build