Allow setting max retries on the settings #118
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: | |
python-version: ["3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip wheel | |
pip install -r requirements-test.txt -e . | |
- name: Start PostgreSQL | |
run: | | |
sudo systemctl start postgresql.service | |
pg_isready | |
- name: Set up PostgreSQL | |
run: | | |
sudo -u postgres psql --command="CREATE USER dbconntest WITH CREATEDB LOGIN PASSWORD 'dbconntest'" --command="\du" | |
sudo -u postgres createdb -O dbconntest -p 5432 dbconntest | |
- name: Run Tests | |
run: | | |
coverage run --source=django_dbconn_retry test_project/manage.py test | |
coverage report -m | |
coverage lcov | |
- name: Run Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: coverage.lcov | |
- name: Run Flake8 | |
run: | |
flake8 --max-line-length=120 django_dbconn_retry setup.py |