-
Notifications
You must be signed in to change notification settings - Fork 10
56 lines (47 loc) · 1.24 KB
/
Linter.yaml
File metadata and controls
56 lines (47 loc) · 1.24 KB
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
name: Linter
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
linter:
name: Linter
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Additional info about the build
shell: bash
run: |
uname -a
df -h
ulimit -a
# More info on options: https://github.com/marketplace/actions/provision-with-micromamba
- uses: mamba-org/provision-with-micromamba@main
with:
environment-file: devtools/conda-envs/lint_env.yaml
environment-name: linter
channels: conda-forge,defaults
extra-specs: |
python=${{ matrix.python-version }}
- name: Install package
# conda setup requires this special shell
shell: bash -l {0}
run: |
python -m pip install . --no-deps
micromamba list
- name: Run flake8
shell: bash -l {0}
run: flake8 ufedmm/
- name: Run black
shell: bash -l {0}
run: black --diff --color ufedmm/
- name: Run isort
shell: bash -l {0}
run: isort --check-only ufedmm/