feat(logqlbench): add LogQL benchmark tool #1883
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: e2e | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
cache: false | |
- name: Get Go environment | |
id: go-env | |
shell: bash | |
run: | | |
echo "cache=$(go env GOCACHE)" >> $GITHUB_ENV | |
echo "modcache=$(go env GOMODCACHE)" >> $GITHUB_ENV | |
- name: Set up cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
${{ env.cache }} | |
${{ env.modcache }} | |
key: ${{ runner.os }}-${{ runner.arch }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-${{ runner.arch }}-go- | |
- name: Run test | |
env: | |
E2E: "1" | |
TESTCONTAINERS_RYUK_DISABLED: "true" | |
run: go test -timeout 15m -race -v -coverpkg=./... -coverprofile=profile.out ./... | |
- name: Emit coverage | |
run: go tool cover -func profile.out | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage | |
path: profile.out | |
if-no-files-found: error | |
retention-days: 1 | |
send: | |
runs-on: ubuntu-latest | |
needs: | |
- test | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Download artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: coverage | |
- name: Send coverage | |
uses: codecov/codecov-action@v4 | |
with: | |
file: profile.out |