Skip to content

fix: Remove unwanted title. #2523

fix: Remove unwanted title.

fix: Remove unwanted title. #2523

Workflow file for this run

name: Checks
on: [push]
jobs:
test:
name: Test codebase
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Create .env-api, .env-issuer and .env-ui files
run: |
touch .env-api
touch .env-issuer
touch .env-ui
- name: Docker Compose
uses: hoverkraft-tech/compose-action@v2.0.1
with:
compose-file: './infrastructure/local/docker-compose-infra.yml'
services: |
postgres
vault
test_local_files_apache
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: go.mod
cache: true
- run: make tests
env:
POSTGRES_TEST_DATABASE: postgres://postgres:postgres@localhost:5432