feat: Fail generation when a service or method is missing a comment #360
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: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
DOTNET_NOLOGO: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup .NET 6 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 6.0.x | |
- name: Build and test | |
run: | | |
dotnet build | |
dotnet test Google.Api.Generator.Tests --logger:"console;noprogress=true" | |
dotnet test Google.Api.Generator.Rest.Tests --logger:"console;noprogress=true" |