-
Notifications
You must be signed in to change notification settings - Fork 35
98 lines (78 loc) · 2.37 KB
/
pymake-linting-install.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
name: pymake linting/installation
on:
schedule:
- cron: '0 3 * * 3' # run at 3 AM UTC every Wednesday
push:
branches: [ master ]
pull_request:
branches:
- master
jobs:
pymake_lint:
name: pymake linting
runs-on: ubuntu-latest
if: github.repository_owner == 'modflowpy'
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.10"
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v1
- name: Install packages
run: |
pip install requests pydotplus appdirs numpy matplotlib
pip install https://github.com/modflowpy/flopy/zipball/develop
pip install pylint flake8 black
- name: Run isort
run: |
echo "if isort check fails update isort using"
echo " pip install isort --upgrade"
echo "and run"
echo " isort ./flopy"
echo "and then commit the changes."
isort --verbose --check --diff ./pymake
- name: Run black
run: |
echo "if black check fails update black using"
echo " pip install black --upgrade"
echo "and run"
echo " black ./flopy"
echo "and then commit the changes."
black --check --diff ./pymake
- name: Run flake8
run: flake8 --count --show-source --exit-zero ./pymake
- name: Run pylint
run: pylint --jobs=2 --errors-only --exit-zero ./pymake
pymake_setup:
name: standard installation
runs-on: ubuntu-latest
strategy:
fail-fast: false
defaults:
run:
shell: bash
steps:
# check out repo
- name: Checkout pymake repo
uses: actions/checkout@v3
- name: Setup Python
uses: actions/[email protected]
with:
python-version: "3.10"
- name: Upgrade pip and install build and twine
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Base pymake installation
run: |
pip --verbose install .
- name: Print pymake version
run: |
python -c "import pymake; print(pymake.__version__)"
- name: Build pymake, check dist outputs
run: |
python -m build
twine check --strict dist/*