Skip to content

Commit 309706f

Browse files
committed
Add a few comments
1 parent 7fa7f28 commit 309706f

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/actions/setup-go/action.yml

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
name: 'Setup the Go environment'
22
description: 'Installs go and restores/saves the build/module cache'
3+
inputs:
4+
git-repo-dirs:
5+
description: "Go code git repository directories (for mtime-restoration)"
6+
required: false
7+
default: '["."]'
38
runs:
49
using: "composite"
510
steps:
@@ -17,6 +22,7 @@ runs:
1722
# Restore original modification time of files based on the date of the most
1823
# recent commit that modified them as mtimes affect the Go test cache.
1924
# See https://github.com/golang/go/issues/58571 for details
25+
# Note that this requires checking out the repos with fetch-depth: 0
2026
- name: Restore modification time of checkout files
2127
uses: chetan/git-restore-mtime-action@075f9bc9d159805603419d50f794bd9f33252ebe
2228

.github/workflows/system-test.yml

+2
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ jobs:
8989
- run: rustup update
9090
- uses: stellar/actions/rust-cache@main
9191
- uses: ./soroban-rpc/.github/actions/setup-go
92+
with:
93+
working-directory: ./soroban-rpc/
9294
- name: Build system test with component versions
9395
run: |
9496
cd $GITHUB_WORKSPACE/system-test

0 commit comments

Comments
 (0)