fix: replace Miniconda setup with Python setup in CI workflow for consistency

This commit is contained in:
bohd4nx
2026-04-14 02:03:22 +03:00
parent 333b6f45ce
commit d66602b646
+1 -8
View File
@@ -38,19 +38,12 @@ jobs:
steps:
- uses: actions/checkout@v6.0.2
- name: Set up conda (Miniconda)
uses: conda-incubator/setup-miniconda@v3.2.0
- uses: actions/setup-python@v6.2.0
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
activate-environment: pyfragment-test
auto-activate: true
conda-remove-defaults: true
- name: Install package and dev dependencies
shell: bash -el {0}
run: pip install ".[dev]"
- name: Run tests
shell: bash -el {0}
run: pytest