-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SocialPulse: Setup automated testing with gh actions
Change-Id: I273040afaa35d92eaa4e28d176602bda1d068474
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Build and Deploy Code | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
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}}_test | ||
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 version 3.12 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.12" | ||
- name: update pip | ||
run: python -m pip install --upgrade pip | ||
- name: install all dependencies | ||
run: pip install -r requirements.txt | ||
- name: test with pytest | ||
run: | | ||
pip install pytest | ||
pytest |