-
Notifications
You must be signed in to change notification settings - Fork 2
60 lines (55 loc) · 1.8 KB
/
ci.yaml
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
name: Unit 4 CI/CD
on:
push:
branches:
- '*'
- '!master'
- '!main'
- '!development'
env:
PACKAGE_NAME: "unit4"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
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 -r requirements-dev.txt
- name: Check imports with isort
run: |
isort ${{ env.PACKAGE_NAME }}/*
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 ${{ env.PACKAGE_NAME }} --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 ${{ env.PACKAGE_NAME }} --count --max-complexity=10 --max-line-length=120 --statistics --per-file-ignores="__init__.py:F401"
- name: Test with pytest
env:
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
run: |
pip install -r requirements.txt
pytest ${{ env.PACKAGE_NAME }}
- name: Python Black Check
run: |
black --line-length=120 --check ${{ env.PACKAGE_NAME }}
- name: assert equality between setup.cfg and requirements.txt
uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: execute py script
run: |
python ./scripts/check_setupcfg_and_requirementst_equal.py