-
Notifications
You must be signed in to change notification settings - Fork 6
59 lines (50 loc) · 1.66 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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 .