when: event: [push] steps: test: image: oven/bun:${BUN_VERSION}-slim commands: - sleep 15 - bun install - bun run test environment: DB_HOST: pg DB_PORT: 5432 DB_USER: dev DB_PASSWORD: dev DB_NAME: trepa services: - name: pg image: postgres:16-alpine environment: - POSTGRES_USER: dev - POSTGRES_PASSWORD: dev - POSTGRES_DB: trepa matrix: BUN_VERSION: - 1.1.42 - 1.1.41 - 1.1.40