-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (46 loc) · 1.03 KB
/
controller-test.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
# This workflow will install Python dependencies, run tests and lint with a single version of Python
name: Test Controller
on:
push:
paths:
- controller/**
branches: [ "main" ]
pull_request:
paths:
- controller/**
branches: [ "main" ]
permissions:
contents: read
env:
python-version: '3.11'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{env.python-version}}
uses: actions/setup-python@v3
with:
python-version: "${{env.python-version}}"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
make install-dev
make create-config
make create-env
make create-views-file
- name: Pylint
run: |
make lint-pylint
- name: Flake8
run: |
make lint-flake8
- name: Mypy
run: |
make typing-mypy
- name: Pytest
run: |
make test-controller
- name: Bandit
run: |
make bandit-scan