Skip to content

fix(mv): Extend event schedule time from 1 hour to 2 hours #1499

fix(mv): Extend event schedule time from 1 hour to 2 hours

fix(mv): Extend event schedule time from 1 hour to 2 hours #1499

Workflow file for this run

name: "Tests"
on: [pull_request]
jobs:
tests:
runs-on: [ ubuntu-latest ]
services:
mariadb:
image: mariadb:latest
ports:
- "3306:3306"
env:
MARIADB_USER: my_username
MARIADB_PASSWORD: my_password
MARIADB_DATABASE: heureka
MARIADB_ROOT_PASSWORD: my_password
options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=10s --health-timeout=5s --health-retries=3
valkey:
image: valkey/valkey:7.2
ports:
- "6379:6379"
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Install Ginkgo
run: go install github.com/onsi/ginkgo/v2/ginkgo
- name: Install Mockery
run: go install github.com/vektra/mockery/[email protected]
- name: Generate Mockery code
run: make mockery
- name: Generate Gqlgen code
run: make gqlgen
- name: Run Tests
env:
DB_USER: my_username
DB_PASSWORD: my_password
DB_ROOT_PASSWORD: my_password
DB_NAME: heureka
DB_ADDRESS: localhost
DB_PORT: 3306
DB_SCHEMA: internal/database/mariadb/init/schema.sql
run: ginkgo --trace -r -randomize-all -randomize-suites