feat: place record date before level points #65
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
| # This workflow will build a .NET project | |
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
| name: Build & Test | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Restore dependencies | |
| run: | | |
| dotnet restore Zeepkist.GTR.Mod.csproj | |
| dotnet restore Zeepkist.GTR.Mod.Tests/Zeepkist.GTR.Mod.Tests.csproj | |
| - name: Build | |
| run: | | |
| dotnet build Zeepkist.GTR.Mod.csproj --no-restore --configuration Release | |
| dotnet build Zeepkist.GTR.Mod.Tests/Zeepkist.GTR.Mod.Tests.csproj --no-restore --configuration Release | |
| - name: Test | |
| run: dotnet test Zeepkist.GTR.Mod.Tests/Zeepkist.GTR.Mod.Tests.csproj --no-build --configuration Release --verbosity normal | |
| - name: Audit dependencies | |
| run: | | |
| dotnet list Zeepkist.GTR.Mod.csproj package --vulnerable --include-transitive | |
| dotnet list Zeepkist.GTR.Mod.Tests/Zeepkist.GTR.Mod.Tests.csproj package --vulnerable --include-transitive |