mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
61 lines
1.3 KiB
YAML
61 lines
1.3 KiB
YAML
name: Build & Test
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Setup .NET Core
|
|
uses: actions/setup-dotnet@v1
|
|
with:
|
|
dotnet-version: 6.0.x
|
|
- name: Install dependencies
|
|
run: dotnet restore
|
|
- name: Build
|
|
run: dotnet build --no-restore /p:WarningsAsErrors=nullable
|
|
- name: Test Engine
|
|
run: dotnet test --no-build Robust.UnitTesting/Robust.UnitTesting.csproj -v n
|
|
|
|
docfx:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Setup .NET Core
|
|
uses: actions/setup-dotnet@v1
|
|
with:
|
|
dotnet-version: 6.0.x
|
|
|
|
- name: Install dependencies
|
|
run: dotnet restore
|
|
|
|
- name: Build Project
|
|
run: dotnet build --no-restore /p:WarningsAsErrors=nullable
|
|
|
|
- name: Build DocFX
|
|
uses: nikeee/docfx-action@v1.0.0
|
|
with:
|
|
args: Robust.Docfx/docfx.json
|
|
|
|
- name: Publish Docfx Documentation on GitHub Pages
|
|
uses: maxheld83/ghpages@master
|
|
env:
|
|
BUILD_DIR: Robust.Docfx/_robust-site
|
|
GH_PAT: ${{ secrets.GH_PAT }}
|