Bump boto3 from 1.34.22 to 1.34.39 in /config/requirements #662
Workflow file for this run
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: Tests | |
on: | |
workflow_call: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run-tests: | |
name: Django tests | |
runs-on: ubuntu-latest | |
env: | |
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres | |
PYTHONPATH: ${{ github.workspace }} | |
BASE_DIR: ${{ github.workspace }}/app | |
DJANGO_SETTINGS_MODULE: config.django.settings.development | |
IMGPROXY_KEY: tests | |
IMGPROXY_SALT: tests | |
SECRET_KEY: tests | |
REDIS_URL: redis://localhost:6379 | |
DJANGO_LOG_LOCATION: ${{ github.workspace }}/django.log | |
USER_ACTIONS_LOG_LOCATION: ${{ github.workspace }}/user_actions.log | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.12 | |
cache: 'pip' | |
cache-dependency-path: config/requirements/requirements.txt | |
- name: Upgrade pip | |
run: | | |
pip install --upgrade pip wheel setuptools | |
- name: Install dependencies | |
run: | | |
pip install -r config/requirements/requirements.txt | |
- name: Install GeoDjango dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install gdal-bin libgdal-dev libgeos-dev libproj-dev | |
- name: Run Django tests | |
working-directory: ./app | |
run: | | |
touch ${{ github.workspace }}/config/__init__.py | |
coverage run --concurrency=multiprocessing ./manage.py test -v 2 --noinput --parallel auto | |
coverage combine | |
coverage xml | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./app/coverage.xml | |
services: | |
postgres: | |
image: postgis/postgis:16-3.4 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: postgres | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
redis: | |
image: redis | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 6379:6379 |