File tree 2 files changed +3
-42
lines changed
2 files changed +3
-42
lines changed Original file line number Diff line number Diff line change @@ -12,48 +12,6 @@ concurrency:
12
12
cancel-in-progress : true
13
13
14
14
jobs :
15
- linting :
16
- runs-on : " ubuntu-latest"
17
- strategy :
18
- matrix :
19
- python-version : ["3.10"]
20
- defaults :
21
- run :
22
- shell : bash -l {0}
23
-
24
- steps :
25
- - name : Checkout repository
26
- uses : actions/checkout@v4
27
-
28
- - name : Create conda environment
29
- uses : mamba-org/setup-micromamba@v1
30
- with :
31
- environment-name : mesmer-linting
32
- environment-file : environment.yml
33
- create-args : >-
34
- python=${{ matrix.python-version }}
35
-
36
- - name : Install mesmer
37
- run : |
38
- python -m pip install --no-deps -e .
39
-
40
- - name : Conda info
41
- run : |
42
- conda info -a
43
- conda list
44
-
45
- - name : Import mesmer
46
- run : |
47
- python -c "import mesmer"
48
- - name : isort
49
- run : isort --check mesmer examples tests setup.py
50
- - name : black
51
- if : always()
52
- run : black --check mesmer examples tests setup.py docs/source/conf.py
53
- - name : flake8
54
- if : always()
55
- run : flake8 mesmer examples tests setup.py
56
-
57
15
test :
58
16
name : py${{ matrix.python-version }}
59
17
runs-on : ${{ matrix.os }}
Original file line number Diff line number Diff line change @@ -155,3 +155,6 @@ cython_debug/
155
155
156
156
# vscode folder
157
157
.vscode
158
+
159
+ # Mac peculiarities
160
+ ** /.DS_Store
You can’t perform that action at this time.
0 commit comments