Skip to content

Commit a40404b

Browse files
committed
simplify CI workflows
1 parent 7cdafc3 commit a40404b

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,12 @@ jobs:
3434
with:
3535
pixi-version: v0.39.0
3636
cache: true
37+
environments: lint
3738
- name: Run Pylint, Mypy & Pyright
3839
run: |
39-
pixi run -e lint pylint
40-
pixi run -e lint mypy
41-
pixi run -e lint pyright
40+
pixi run pylint
41+
pixi run mypy
42+
pixi run pyright
4243
4344
checks:
4445
name: Check ${{ matrix.environment }}

.github/workflows/docs-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ jobs:
1111
with:
1212
pixi-version: v0.39.0
1313
cache: true
14+
environments: docs
1415
- name: Build Docs
15-
run: pixi run -e docs docs
16+
run: pixi run docs
1617
- name: Upload Artifact
1718
uses: actions/upload-artifact@v4
1819
with:

0 commit comments

Comments
 (0)