Skip to content

Fix comment loss from semicolon and empty decls #3768

Fix comment loss from semicolon and empty decls

Fix comment loss from semicolon and empty decls #3768

Workflow file for this run

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 ./...