mirror of
https://github.com/aljazceru/lspd.git
synced 2026-02-16 11:44:27 +01:00
16 lines
420 B
YAML
16 lines
420 B
YAML
name: 'Cache itest'
|
|
description: 'Fetch LSPD Integration Test and cache the go directory'
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Cache itest
|
|
id: cache-itest
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
~/go
|
|
key: itest
|
|
- name: Get LSPD Integration Test
|
|
if: steps.cache-itest.outputs.cache-hit != 'true'
|
|
run: go get github.com/breez/lspd/itest
|
|
shell: bash |