BG3: Add support for serializing and deserializing modsettings.lsx
Load Order file
#2183
Workflow file for this run
This file contains 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: Validate NuGet packages | |
on: | |
schedule: | |
- cron: '0 9 * * *' | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/validate-nupkgs.yaml' | |
- '**.csproj' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/validate-nupkgs.yaml' | |
- '**.csproj' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: "recursive" | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.x' | |
- name: Pack | |
run: dotnet pack | |
- name: Validate | |
shell: pwsh | |
run: ./scripts/validate-nupkgs.ps1 |