We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a40404b commit da9c89aCopy full SHA for da9c89a
.github/workflows/ci.yml
@@ -37,9 +37,9 @@ jobs:
37
environments: lint
38
- name: Run Pylint, Mypy & Pyright
39
run: |
40
- pixi run pylint
41
- pixi run mypy
42
- pixi run pyright
+ pixi run -e lint pylint
+ pixi run -e lint mypy
+ pixi run -e lint pyright
43
44
checks:
45
name: Check ${{ matrix.environment }}
.github/workflows/docs-build.yml
@@ -13,7 +13,7 @@ jobs:
13
cache: true
14
environments: docs
15
- name: Build Docs
16
- run: pixi run docs
+ run: pixi run -e docs docs
17
- name: Upload Artifact
18
uses: actions/upload-artifact@v4
19
with:
0 commit comments