forked from github/plane
54 lines
1.3 KiB
YAML
54 lines
1.3 KiB
YAML
name: Plane Tests
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:latest
|
|
env:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_DB: github_actions
|
|
ports:
|
|
- 5432:5432
|
|
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
|
|
|
redis:
|
|
image: redis:latest
|
|
env:
|
|
REDIS_HOST: localhost
|
|
REDIS_PORT: 6379
|
|
ports:
|
|
- 6379:6379
|
|
options: --health-cmd "redis-cli ping"
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python 3.9
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.9
|
|
- name: psycopg2 prerequisites
|
|
run: sudo apt-get install libpq-dev
|
|
- name: Install dependencies
|
|
working-directory: ./apiserver
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements/test.txt
|
|
- name: Run Tests
|
|
working-directory: ./apiserver
|
|
env:
|
|
SECRET_KEY: ${{ secrets.SECRET_KEY }}
|
|
run: coverage run --source='.' manage.py test --settings=plane.settings.test
|