Bump the pyproject.toml version #375
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
python: ["3.7", "3.8", "3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install mamba | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-name: ci | |
create-args: >- | |
python=${{ matrix.python }} | |
condarc: | | |
channels: | |
- anaconda | |
- conda-forge | |
- pytorch | |
- uses: actions/checkout@v3 | |
with: | |
repository: pyenv/pyenv | |
ref: v2.3.6 | |
path: pyenv | |
- name: Install dependencies | |
run: | | |
python -m pip install -r dev-requirements.txt | |
python -m pip install -e ".[build]" | |
- name: Install uv | |
if: ${{ matrix.python != '3.7' }} | |
run: | | |
python -m pip install uv | |
- name: Test | |
run: | | |
export ISOLATE_PYENV_EXECUTABLE=pyenv/bin/pyenv | |
python -m pytest -vvv |