Integration tests #18
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: Integration tests | |
on: | |
# #merge_group: | |
# push: | |
# branches: [ "main" ] | |
workflow_dispatch: | |
inputs: | |
GIT_REF: | |
description: 'Commit hash to run the tests' | |
required: true | |
jobs: | |
build-quesma-docker-image: | |
uses: ./.github/workflows/build-quesma-docker-image.yml | |
with: | |
REF: ${{inputs.GIT_REF}} | |
integration-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: Load images | |
run: | | |
for file in /tmp/images/*/*.tar; do | |
docker load --input $file | |
done | |
docker image ls -a | |
- name: Set environment variable | |
run: echo "EXECUTING_ON_GITHUB_CI=true" >> $GITHUB_ENV | |
- name: Run integration tests | |
working-directory: ci/it | |
# env: | |
# EXECUTING_ON_GITHUB_CI: true | |
run: go test -v | |