Skip to content

[pre-commit.ci] pre-commit autoupdate #853

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #853

Workflow file for this run

name: pytest
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Update Python version in environment.yml
run: |
sed -i 's/- python/- python=${{ matrix.python-version }}/g' environment.yml
echo "Updated environment.yml content:"
cat environment.yml
- name: Install Conda environment with micromamba
uses: mamba-org/provision-with-micromamba@main
with:
environment-file: environment.yml
cache-env: true
- name: Install adaptive-scheduler
shell: bash -l {0}
run: |
pip install -e ".[test,all]"
# Linux and macOS
- name: Run Python
shell: bash -l {0}
run: |
python -c "import adaptive_scheduler; print(adaptive_scheduler.__version__)"
pytest
- name: Upload coverage to Codecov
if: matrix.python-version == '3.11'
uses: codecov/codecov-action@v3