-
Notifications
You must be signed in to change notification settings - Fork 1
115 lines (107 loc) · 3.41 KB
/
continuous-integration-pip.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
name: CI (tests, flake8, mypy)
on:
push:
paths-ignore:
- 'changelog.rst'
pull_request:
schedule:
- cron: '0 11 * * 4'
jobs:
skip_duplicate:
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@master
with:
github_token: ${{ github.token }}
analyse:
name: Analyse
needs: skip_duplicate
if: ${{ needs.skip_duplicate.outputs.should_skip == 'false' }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
# Override language selection
with:
languages: python
setup-python-dependencies: false
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
test-pip:
needs: skip_duplicate
if: ${{ needs.skip_duplicate.outputs.should_skip == 'false' }}
strategy:
matrix:
python-version: [ 3.9, "3.10", "3.11", "3.12", "pypy3.9" , "pypy3.10" ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade -r requirements_ci.txt
- name: Lint all python files with flake8
run: |
# stop the build if there are flake8 errors (E203,W505 not compatible to black)
flake8 src tests --count --extend-ignore=E203,W503 --max-line-length=88 --show-source --statistics
- name: Type check package source with mypy
run: |
mypy src/nographs
- name: Check source code formatting with Black
run: |
black src/nographs --check --verbose --diff
- name: Install from source (required for the pre-commit tests)
run: python -m pip install .
- name: Run all tests (including doc tests)
run: python ./tests/test_nographs.py
- name: Upload coverage
uses: codecov/codecov-action@v3
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Build package
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade build
python -m build
python -m pip install dist/*.tar.gz
echo "Install went OK"
# publish:
# name: Publish to PyPI
# needs: build
# if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
# runs-on: ubuntu-latest
# steps:
# - name: Checkout source
# uses: actions/checkout@v3
# - name: Set up Python 3.9
# uses: actions/setup-python@v4
# with:
# python-version: 3.9
# - name: Build package
# run: |
# pip install wheel
# python setup.py sdist bdist_wheel
# - name: Publish
# uses: pypa/[email protected]
# with:
# user: __token__
# password: ${{ secrets.PYPI_API_TOKEN }}