Update dependency Generaptor to 1.9.1 #761
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
| # SPDX-FileCopyrightText: 2021-2026 O21 contributors <https://github.com/ForNeVeR/O21> | |
| # | |
| # SPDX-License-Identifier: MIT | |
| # This file is auto-generated. | |
| name: Main | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - renovate/** | |
| pull_request: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: 0 0 * * 6 | |
| workflow_dispatch: | |
| jobs: | |
| main: | |
| name: main.${{ matrix.config.name }} | |
| strategy: | |
| matrix: | |
| config: | |
| - image: macos-15 | |
| name: macos | |
| - image: ubuntu-24.04 | |
| name: linux | |
| - image: windows-2025 | |
| name: windows | |
| fail-fast: false | |
| runs-on: ${{ matrix.config.image }} | |
| env: | |
| DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
| DOTNET_NOLOGO: 1 | |
| NUGET_PACKAGES: ${{ github.workspace }}/.github/nuget-packages | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: NuGet cache | |
| uses: actions/cache@v5 | |
| with: | |
| key: ${{ runner.os }}.nuget.${{ hashFiles('**/*.fsproj') }} | |
| path: ${{ env.NUGET_PACKAGES }} | |
| - name: Set up .NET SDK | |
| uses: actions/setup-dotnet@v5 | |
| - name: Build | |
| run: dotnet build | |
| - name: Test | |
| run: dotnet test --filter Category!=ExcludeCI | |
| - name: Verify translations | |
| shell: pwsh | |
| run: ./Scripts/Verify-Translations.ps1 | |
| licenses: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Check out the sources | |
| uses: actions/checkout@v6 | |
| - name: REUSE license check | |
| uses: fsfe/reuse-action@v6 | |
| encoding: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Verify encoding | |
| shell: pwsh | |
| run: Scripts/Test-Encoding.ps1 | |
| verify-workflows: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
| DOTNET_NOLOGO: 1 | |
| NUGET_PACKAGES: ${{ github.workspace }}/.github/nuget-packages | |
| steps: | |
| - name: Check out the sources | |
| uses: actions/checkout@v6 | |
| - name: Set up .NET SDK | |
| uses: actions/setup-dotnet@v5 | |
| - name: NuGet cache | |
| uses: actions/cache@v5 | |
| with: | |
| key: ${{ runner.os }}.nuget.${{ hashFiles('**/*.fsproj') }} | |
| path: ${{ env.NUGET_PACKAGES }} | |
| - name: Verify generated CI definition | |
| run: dotnet fsi ./Scripts/github-actions.fsx verify |