Fix comment loss from semicolon and empty decls #3768
Workflow file for this run
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: windows | |
| on: | |
| push: | |
| branches: [main] | |
| tags: ['v*'] | |
| pull_request: | |
| branches: [main] | |
| schedule: | |
| - cron: '15 22 * * *' | |
| workflow_dispatch: {} # support manual runs | |
| permissions: | |
| contents: read | |
| jobs: | |
| windows: | |
| name: windows (go:${{ matrix.go-version.name }}) | |
| env: | |
| PROTOC_ARTIFACT_SUFFIX: win64 | |
| PATH_SEP: ; | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| go-version: | |
| - name: latest | |
| version: 1.26.x | |
| - name: previous | |
| version: 1.25.x | |
| steps: | |
| - name: Set git to use LF | |
| run: | | |
| git config --global core.autocrlf false | |
| git config --global core.eol lf | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 1 | |
| - uses: actions/setup-go@v7 | |
| with: | |
| go-version: ${{ matrix.go-version.version }} | |
| - shell: bash | |
| run: make protoc && go test ./... |