From 7238c0a16f6e7ef1a81f9f3db973ba7635b88d21 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Mon, 22 Nov 2021 02:47:18 +0100 Subject: [PATCH] ci: cache Go cache for faster build times --- .github/workflows/windows.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 3a503688..7442795f 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -23,6 +23,13 @@ jobs: uses: actions/checkout@v2 with: submodules: true + - name: Cache Go + uses: actions/cache@v2 + with: + key: go-cache-windows-v1-${{ hashFiles('go.mod') }} + path: | + ~/AppData/Local/go-build + ~/go/pkg/mod - name: Cache LLVM source uses: actions/cache@v2 id: cache-llvm-source