Bump werkzeug from 1.0.1 to 3.0.6 in /requirements #552
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: Django CI | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: [3.9, '3.10'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PostgreSQL with Postgis | |
uses: huaxk/[email protected] | |
with: | |
postgresql version: latest | |
postgresql db: osmcha | |
postgresql user: ${{ secrets.POSTGRES_USER }} | |
postgresql password: ${{ secrets.POSTGRES_PASSWORD }} | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update -qq -y | |
sudo apt-get install -y binutils libproj-dev python3-gdal libgeos-dev libyaml-dev | |
python -m pip install --upgrade pip | |
pip install -r requirements/test.txt | |
- name: Run Tests | |
run: | | |
coverage run manage.py test --settings=config.settings.tests | |
env: | |
OAUTH_OSM_KEY: ${{ secrets.OAUTH_OSM_KEY }} | |
OAUTH_OSM_SECRET: ${{ secrets.OAUTH_OSM_SECRET }} | |
POSTGRES_USER: ${{ secrets.POSTGRES_USER }} | |
POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }} |