-
Notifications
You must be signed in to change notification settings - Fork 43
73 lines (63 loc) · 2.24 KB
/
python-publish.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
64
65
66
67
68
69
70
71
72
73
name: Upload Python Package
on:
push:
tags:
- "v*.*"
jobs:
integration_tests:
environment: Dev
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
poetry-version: ["1.1.13", "1.1.12"]
env:
CUCM_PUBLISHER: ${{ secrets.CUCM_PUBLISHER }}
CUCM_AXL_USERNAME: ${{ secrets.CUCM_AXL_USERNAME }}
CUCM_AXL_PASSWORD: ${{ secrets.CUCM_AXL_PASSWORD }}
CUCM_VERSION: ${{ secrets.CUCM_VERSION }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Set up Poetry ${{ matrix.poetry-version }}
uses: abatilo/[email protected]
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Set Poetry env to use Python ${{ matrix.python-version }}
run: |
poetry env use ${{ matrix.python-version }}
- name: Install dependencies with Poetry
run: |
poetry install -E github
echo "::set-output name=POETRY_VENV::$(poetry env info -p)"
id: install
- name: Lint with flake8
run: |
# work from the virtualenv
source ${{ steps.install.outputs.POETRY_VENV }}/bin/activate
# stop the build if there are Python syntax errors or undefined names
poetry run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
poetry run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Bandit Security scan
run: |
poetry run bandit -c bandit.yml -r ciscoaxl
- name: Test with pytest
run: |
poetry run coverage run -m pytest -v
- name: Code Coverage Report
run: |
poetry run coverage report -m
publish:
needs: "integration-tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build and publish to pypi
uses: JRubics/[email protected]
with:
pypi_token: ${{ secrets.PYPI_API_TOKEN }}