Skip to content

Commit

Permalink
scaffolding for github ci job
Browse files Browse the repository at this point in the history
  • Loading branch information
mieciu committed Oct 4, 2024
1 parent 37a1a74 commit f1e8686
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: E2E tests

on:
merge_group:
push:
branches: [ "main" ]
workflow_dispatch:
inputs:
GIT_REF:
description: 'Commit hash to run the tests'
required: true
jobs:

e2e-test-run:
runs-on: ubuntu-latest
needs: [build-quesma-docker-image]
steps:
- uses: actions/checkout@v4
with: ## @TODO REMOVE
ref: ${{ github.event.inputs.GIT_REF }}

- name: Set up Go
uses: actions/setup-go@v5
with:
cache-dependency-path: smoke-test/go.sum
go-version: '1.22'

# - name: Download images
# uses: actions/download-artifact@v4
# with:
# path: /tmp/images

- name: Run integration tests
working-directory: ci/it
run: go test -v

0 comments on commit f1e8686

Please sign in to comment.