File tree Expand file tree Collapse file tree
actions/go-test-bootstrap Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : Set up Go test environment
2- description : Checks out code, sets up Go from go.mod, and installs Ginkgo.
2+ description : Sets up Go from go.mod and installs Ginkgo.
33
44runs :
55 using : ' composite'
66 steps :
7- - name : Checkout code
8- uses : actions/checkout@v6
9-
107 - name : Set up Go
118 uses : actions/setup-go@v6
129 with :
1512 - name : Install Ginkgo
1613 shell : bash
1714 run : go install github.com/onsi/ginkgo/v2/ginkgo@latest
18-
Original file line number Diff line number Diff line change 3131 STACK_NAME : s3cli-iam
3232 S3_ENDPOINT_HOST : https://s3.amazonaws.com
3333 steps :
34+ - name : Checkout code
35+ uses : actions/checkout@v6
36+
3437 - name : Set up test environment
3538 uses : ./.github/actions/go-test-bootstrap
3639
@@ -115,6 +118,9 @@ jobs:
115118 label_filter : ' aws && esc'
116119 use_esc_credentials : true
117120 steps :
121+ - name : Checkout code
122+ uses : actions/checkout@v6
123+
118124 - name : Set up test environment
119125 uses : ./.github/actions/go-test-bootstrap
120126
@@ -155,6 +161,9 @@ jobs:
155161 github.event_name == 'workflow_dispatch' ||
156162 (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')
157163 steps :
164+ - name : Checkout code
165+ uses : actions/checkout@v6
166+
158167 - name : Set up test environment
159168 uses : ./.github/actions/go-test-bootstrap
160169
You can’t perform that action at this time.
0 commit comments