Don't run huge match import periodic task with settings_local #370
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: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
db: [postgres] | |
python-version: ["3.12"] | |
include: | |
- db: postgres | |
db_port: 5432 | |
services: | |
postgres: | |
image: postgres:15 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install uv | |
uv pip install -r requirements.txt --system | |
- name: Run Tests | |
env: | |
DB: ${{ matrix.db }} | |
DB_USER: postgres | |
DB_HOST: 127.0.0.1 | |
DB_PORT: ${{ matrix.db_port }} | |
DB_PASSWORD: postgres | |
DJANGO_SETTINGS_MODULE: lolsite.settings_test | |
ENVNAME: test | |
RIOT_API_TOKEN: blah | |
run: | | |
python manage.py test |