We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa7dd95 commit 3fca4c0Copy full SHA for 3fca4c0
1 file changed
.github/workflows/lint.yml
@@ -20,12 +20,18 @@ jobs:
20
steps:
21
- uses: actions/checkout@v4
22
23
- - uses: actions/setup-python@v5
+ - name: Setup Miniconda
24
+ uses: conda-incubator/setup-miniconda@v3
25
with:
- python-version: "3.11"
26
+ activate-environment: ci-env
27
+ environment-file: environment.yaml
28
+ auto-activate-base: false
29
+ use-mamba: true
30
+ mamba-version: "*"
31
- - run: python -m pip install --upgrade pip
- - run: pip install ruff black mypy
32
+ - name: Add dev dependencies
33
+ shell: bash -l {0}
34
+ run: conda env update -n ci-env -f environment-dev.yaml
35
36
- run: ruff check .
37
- run: black --check .
0 commit comments