Skip to content

Same-template subset-minimum tiebreaker for GetSingleGroupWithTags #132

Same-template subset-minimum tiebreaker for GetSingleGroupWithTags

Same-template subset-minimum tiebreaker for GetSingleGroupWithTags #132

Workflow file for this run

name: Source Generator
on:
push:
branches: [main, 'dev/v*']
pull_request:
branches: [main]
jobs:
build:
name: Build Source Generator
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore SourceGen/Trecs.SourceGen/Trecs.SourceGen.sln
- name: Build
run: dotnet build SourceGen/Trecs.SourceGen/Trecs.SourceGen.sln -c Release --no-restore
- name: Test
run: dotnet test SourceGen/Trecs.SourceGen/Trecs.SourceGen.sln -c Release --no-build --logger "console;verbosity=normal"
format-check:
name: Check Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore tools
working-directory: UnityProject/Trecs
run: dotnet tool restore
- name: Check formatting
working-directory: UnityProject/Trecs
run: dotnet csharpier check .