Skip to content

Update latest dependencies (#213) #654

Update latest dependencies (#213)

Update latest dependencies (#213) #654

Workflow file for this run

name: Install Test
on:
pull_request:
types: [opened, synchronize]
push:
branches:
- main
jobs:
install:
name: ${{ matrix.os }} - ${{ matrix.python_version }} install
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python_version: ["3.9", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- name: Set up python ${{ matrix.python_version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- uses: actions/checkout@v3
- name: Build package
run: make package
- name: Install package
run: |
python -m pip install "unpacked_sdist/."
- name: Test by importing packages
run: |
python -c "import trane"
- name: Check package conflicts
run: |
python -m pip check
- name: Install add ons
run: |
python -m pip install "unpacked_sdist/[llm]"
- name: Test by importing packages
run: |
python -c "import openai"