[VCARB-524] Tell Shopmonkey about company IDs (#287) #154
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 tests | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
concurrency: | |
group: e2e-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: | |
group: eds-runners | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
depth: 1 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23 | |
- name: Start containers | |
run: docker compose up --force-recreate -d --quiet-pull | |
- name: Show Kafka output | |
run: docker logs eds-init-kafka-1 | |
- name: Run tests | |
run: make e2e | |
- name: Stop containers | |
run: docker compose down | |
if: always() |