-
Notifications
You must be signed in to change notification settings - Fork 5
49 lines (43 loc) · 1.18 KB
/
linting.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
name: linting
on:
push:
branches:
- main
pull_request: null
jobs:
tests:
name: PEP8
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.9
channels: conda-forge,defaults
channel-priority: strict
show-channel-urls: true
miniforge-version: latest
miniforge-variant: Mambaforge
- name: configure conda and install code
# Test against latest releases of each code in the dependency chain
shell: bash -l {0}
run: |
conda config --set always_yes yes
mamba install --quiet \
--file=requirements.txt
python -m pip install --no-deps -e .
mamba install -y -q \
flake8 \
pytest \
pytest-xdist \
pytest-cov \
pip \
setuptools \
"setuptools_scm>=7,<8" \
python-build \
flake8-pyproject
python -m pip install --no-build-isolation --no-deps -e .
- name: lint
shell: bash -l {0}
run: |
flake8 diffmah