-
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
2 changed files
with
47 additions
and
1 deletion.
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 Test 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: Fetch Github Repository | ||
uses: actions/checkout@v2 | ||
- name: Installing Python 3.12 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.12" | ||
- name: Updating Pip to latest version | ||
run: python -m pip install --upgrade pip | ||
- name: Installing Dependencies | ||
run: pip install -r requirements.txt | ||
- name: Init Testing | ||
run: | | ||
pip install pytest | ||
pytest |
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