This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Deploy Code | |
on: | |
push: | |
branches: | |
- main | |
- staging | |
- test | |
- dev | |
pull_request: | |
branches: | |
- main | |
- staging | |
jobs: | |
job1: | |
environment: | |
name: testing | |
env: | |
DATABASE_HOSTNAME: ${{secrets.DATABASE_HOSTNAME}} | |
DATABASE_PORT: ${{secrets.DATABASE_PORT}} | |
DATABASE_PASSWORD: ${{secrets.DATABASE_PASSWORD}} | |
DATABASE_NAME: ${{secrets.DATABASE_NAME}} | |
DATABASE_USERNAME: ${{secrets.DATABASE_USERNAME}} | |
SECRET_KEY: ${{secrets.SECRET_KEY}} | |
ALGORITHM: ${{secrets.ALGORITHM}} | |
ACCESS_TOKEN_EXPIRE_MINUTES: ${{secrets.ACCESS_TOKEN_EXPIRE_MINUTES}} | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_PASSWORD: ${{secrets.DATABASE_PASSWORD}} | |
POSTGRES_DB: ${{secrets.DATABASE_NAME}} | |
ports: | |
- 5432:5432 | |
options: >- | |
--health_cmd pg_isready | |
--health_interval 10s | |
--health_timeout 5s | |
--health_retries 5 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Pulling git repo | |
uses: actions/checkout@v2 | |
- name: Install Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.9" | |
- name: Update PIP | |
run: python -m pip install --upgrade pip | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Run tests | |
run: | | |
pip install pytest | |
pytest |