Skip to content

bump version

bump version #1172

Workflow file for this run

name: basxconnect-ci
on: [push]
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
include:
# django 3.2
- python-version: "3.7"
django-version: "Django>=3.2,<4.0"
- python-version: "3.8"
django-version: "Django>=3.2,<4.0"
- python-version: "3.9"
django-version: "Django>=3.2,<4.0"
- python-version: "3.10"
django-version: "Django>=3.2,<4.0"
# django 4.0
- python-version: "3.8"
django-version: "Django>=4.0"
- python-version: "3.9"
django-version: "Django>=4.0"
- python-version: "3.10"
django-version: "Django>=4.0"
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 "${{ matrix.django-version }}"
pip install flake8 flake8-black pytest pytest-custom_exit_code black isort bandit safety hypothesis
pip install -e .[testing]
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: flake8 .
- name: Run black --check .
run: black --check .
- name: Run isort --check-only .
run: isort --check-only --profile=black .
- name: Run bandit
run: bandit -c .bandit -r basxconnect
- name: Run safety
run: safety check
- name: Test basxconnect
run: python manage.py test basxbread .