-
Notifications
You must be signed in to change notification settings - Fork 20
46 lines (46 loc) · 1.14 KB
/
windows.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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:
ci:
env:
PROTOC_ARTIFACT_SUFFIX: win64
PATH_SEP: ;
runs-on: windows-latest
strategy:
matrix:
go-version: [1.21.x,1.22.x,1.23.x]
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- id: go-cache-paths
shell: bash
run: |
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
- name: Mod Cache
uses: actions/cache@v4
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-protocompile-ci-${{ hashFiles('**/go.sum') }}
- name: Test
shell: bash
run: make protoc && go test ./...