Skip to content

Commit 4c95c5f

Browse files
authoredFeb 9, 2024
remove linting GHA; update .gitignore (#394)
* add Mac folder file to gitignore * removed linting job from GHA
1 parent 0df7211 commit 4c95c5f

File tree

2 files changed

+3
-42
lines changed

2 files changed

+3
-42
lines changed
 

‎.github/workflows/ci-cd-workflow.yml

-42
Original file line numberDiff line numberDiff line change
@@ -12,48 +12,6 @@ concurrency:
1212
cancel-in-progress: true
1313

1414
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-
5715
test:
5816
name: py${{ matrix.python-version }}
5917
runs-on: ${{ matrix.os }}

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -155,3 +155,6 @@ cython_debug/
155155

156156
# vscode folder
157157
.vscode
158+
159+
# Mac peculiarities
160+
**/.DS_Store

0 commit comments

Comments
 (0)
Please sign in to comment.