remove v1 update info #203
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: 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" |