Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

[updatecli] update elastic stack version for testing 7.17.13-f0591b59 #2390

[updatecli] update elastic stack version for testing 7.17.13-f0591b59

[updatecli] update elastic stack version for testing 7.17.13-f0591b59 #2390

Workflow file for this run

---
## Workflow to lint and test
name: pull-request
permissions:
contents: read
on:
pull_request:
push:
jobs:
test:
name: Run Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Fetch Go version from .go-version
run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
cache: true
cache-dependency-path: go.sum
- name: build
run: .ci/scripts/build-test.sh
- uses: actions/upload-artifact@v3 # upload test results
if: success() || failure() # run this step even if previous step failed
with:
name: test-results
path: outputs/TEST-unit-*.xml