-
Notifications
You must be signed in to change notification settings - Fork 2
63 lines (54 loc) · 1.87 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
60
61
62
63
name: basxconnect-ci
on: [push]
jobs:
build:
runs-on: ubuntu-latest
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"
- python-version: "3.11"
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"
- python-version: "3.11"
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 --upgrade "${{ matrix.django-version }}"
pip install --upgrade flake8 flake8-black pytest pytest-custom_exit_code black isort bandit safety mypy types-setuptools types-python-dateutil types-requests types-backports setuptools
pip install --upgrade -e .[all]
- 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 .
- name: Run Safety
run: safety check
- name: Test with pytest
run: ./manage.py test
- name: Check types
run: mypy --install-types --non-interactive basxbread