Skip to content

chore(deps): update konflux references #114

chore(deps): update konflux references

chore(deps): update konflux references #114

Workflow file for this run

---
name: SQL Tests
on:
- pull_request
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
services:
postgres:
image: quay.io/cloudservices/postgresql-rds:15
env:
POSTGRESQL_USER: insights
POSTGRESQL_PASSWORD: insights
POSTGRESQL_DATABASE: cloud-connector
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
# Maps tcp port 5432 on service container to the host
- 5432:5432
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.20.x
- name: Run Tests (including sql tests)
run: make test test-sql