feat: add 2026 supporting member tag #6
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: CI | |
| on: | |
| pull_request: | |
| paths: | |
| - SgfDevs/** | |
| - SgfDevs.Tests/** | |
| - SgfDevs.slnx | |
| - .github/workflows/** | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - SgfDevs/** | |
| - SgfDevs.Tests/** | |
| - SgfDevs.slnx | |
| - .github/workflows/** | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Restore | |
| run: dotnet restore SgfDevs.slnx | |
| - name: Build | |
| run: dotnet build SgfDevs.slnx --no-restore --verbosity minimal | |
| - name: Test | |
| run: dotnet test SgfDevs.slnx --no-build --verbosity minimal |