diff options
Diffstat (limited to '.github/workflows/go.yml')
| -rw-r--r-- | .github/workflows/go.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 2a25740..54d833c 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -56,6 +56,14 @@ jobs: restore-keys: | ${{ runner.os }}-golang- + - name: Cache playwright binaries + uses: actions/cache@v3 + id: playwright-cache + with: + path: | + ~/.cache/ms-playwright + key: ${{ runner.os }}-playwright-${{ hashFiles('**/go.sum') }} + - name: Build run: go build ./... |
