Skip to content

Commit 27a017f

Browse files
committed
Update CI pipeline
1 parent f663fba commit 27a017f

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
python-version: "3.9"
4545
- name: check
4646
run: |
47-
poetry run black --check mesh2vec tests scripts docs docs/examples scripts
47+
poetry run black --check docs mesh2vec scripts tests
4848
4949
pylint:
5050
needs: prepare-linux
@@ -58,7 +58,7 @@ jobs:
5858
python-version: "3.9"
5959
- name: check
6060
run: |
61-
poetry run pylint mesh2vec tests docs/examples scripts
61+
poetry run pylint docs/examples mesh2vec scripts tests
6262
6363
mypy:
6464
needs: prepare-linux
@@ -72,7 +72,7 @@ jobs:
7272
python-version: "3.9"
7373
- name: check
7474
run: |
75-
poetry run mypy mesh2vec tests docs/examples scripts
75+
poetry run mypy docs/examples mesh2vec scripts tests
7676
7777
audit:
7878
needs: [prepare-linux, prepare-win]
@@ -90,7 +90,7 @@ jobs:
9090
python-version: ${{ matrix.python-version }}
9191
- name: check
9292
run: |
93-
poetry run pip-audit --ignore-vuln GHSA-w596-4wvx-j9j6
93+
poetry run pip-audit
9494
9595
doctest:
9696
needs: [prepare-linux, prepare-win]
@@ -108,7 +108,8 @@ jobs:
108108
python-version: ${{ matrix.python-version }}
109109
- name: test
110110
run: |
111-
poetry run sphinx-build docs/source build/documentation/ -W -b html && poetry run sphinx-build docs/source build/documentation/ -W -b doctest
111+
poetry run sphinx-build docs/source build/documentation/ -W -b html
112+
poetry run sphinx-build docs/source build/documentation/ -W -b doctest
112113
113114
unit-tests:
114115
needs: [prepare-linux, prepare-win]
@@ -159,7 +160,8 @@ jobs:
159160
python-version: "3.9"
160161
- name: build wheels
161162
run: |
162-
poetry build -f wheel -vvv && poetry run check-wheel-contents dist/
163+
poetry build -f wheel -vvv
164+
poetry run check-wheel-contents dist/
163165
- name: Store wheels
164166
uses: actions/upload-artifact@v5
165167
with:

0 commit comments

Comments
 (0)