build(deps): bump scrapy from 2.4.1 to 2.11.2 #24
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: | |
push: | |
branches: [ dev ] | |
pull_request: | |
branches: [ dev ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: [3.7, 3.8, 3.9] | |
services: # https://docs.github.com/en/actions/using-containerized-services/creating-postgresql-service-containers | |
postgres: | |
image: postgres | |
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 # service doesn't come with health check | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Run migrations | |
env: | |
SECRET_KEY: rgv8ni2^xx-3gn5h4=go_&*g-+)fu=6tkb1%v=#3g*_89at7#$ # dummy secret key | |
run: | # need to run makemigrations command to avoid errors in scraper dependencies | |
python manage.py makemigrations | |
python manage.py migrate | |
- name: Run Tests | |
env: | |
SECRET_KEY: rgv8ni2^xx-3gn5h4=go_&*g-+)fu=6tkb1%v=#3g*_89at7#$ | |
run: | | |
python manage.py test |