Skip to content

Feature/add cache to GitHub actions #1042

Feature/add cache to GitHub actions

Feature/add cache to GitHub actions #1042

Workflow file for this run

name: Check app
on:
pull_request:
branches:
- develop
- master
- experimental
env:
POSTGRES_PASSWORD: postgres
POSTGRES_DB: lomaya_baryery_db_local
POSTGRES_USER: postgres
DB_HOST: localhost
DB_PORT: 5432
APPLICATION_URL: 'http://localhost:8080/'
HEALTHCHECK_API_URL: 'http://localhost:8080/ping'
HEALTHCHECK_URL: 'http://localhost:8080/healthcheck'
jobs:
healthcheck:
name: Check app
runs-on: ubuntu-latest
environment:
name: healthcheck
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: ${{env.POSTGRES_PASSWORD}}
POSTGRES_DB: ${{env.POSTGRES_DB}}
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Build image
uses: ./.github/actions/build
- name: Create .env file
run: |
touch .env
echo BOT_TOKEN=${{ secrets.TELEGRAM_BOT_TOKEN }} >> .env
echo APPLICATION_URL=$APPLICATION_URL >> .env
echo HEALTHCHECK_API_URL=$HEALTHCHECK_API_URL >> .env
- name: Alembic Upgrade
run: poetry run alembic upgrade head
- name: Run App
run: timeout 20 poetry run python run.py &
- name: Request healthcheck endpoint
uses: im-open/[email protected]
with:
url: ${{env.HEALTHCHECK_URL}}
fail-on-bad-status: true