Skip to content

Abstracting permissions frameworks #1

Abstracting permissions frameworks

Abstracting permissions frameworks #1

Workflow file for this run

name: CI
on:
# push: -- just run on PRs for now
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgis/postgis:13-3.0
env:
POSTGRES_PASSWORD: postgis
POSTGRES_DB: arches
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install python packages
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -r arches/install/requirements.txt
pip install -r arches/install/requirements_dev.txt
echo Python packages installed
- name: Install Java, GDAL, and other system dependencies
run: |
sudo apt update
sudo apt-get install libxml2-dev libpq-dev openjdk-8-jdk libgdal-dev
echo Postgres and ES dependencies installed
- uses: ankane/setup-elasticsearch@v1
with:
elasticsearch-version: 8
- name: Webpack frontend files
run: |
yarn && yarn build_test
- name: Run Arches unit tests
run: |
python manage.py test tests --pattern="*.py" --settings="tests.test_settings"