Skip to content

remove v1 update info #203

remove v1 update info

remove v1 update info #203

Workflow file for this run

name: ModVerify Build & Test
on:
workflow_call:
workflow_dispatch:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build-test:
name: Build & Test
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: recursive
- uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Build & Test in Release Mode
run: dotnet test --configuration Release --report-github
test-moddingtoolbase:
name: Test ModdingToolBase
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: recursive
- uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Test ModdingToolBase (submodule)
shell: pwsh
run: |
$c = Get-Content -Raw ./update-tooling.jsonc | ConvertFrom-Json
& "$($c.scriptsDir)/Test-ModdingToolBase.ps1"