Add support for Palm, Claude-2, Llama2, CodeLlama (100+LLMs) #260
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: | |
- main | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.9, 3.11] | |
poetry-version: [1.3.2] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache poetry installation | |
uses: actions/cache@v2 | |
with: | |
path: ~/.local | |
key: poetry-${{ matrix.python-version }}-${{ matrix.poetry-version }} | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
poetry-version: ${{ matrix.poetry-version }} | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
- name: Cache dependencies | |
uses: actions/cache@v2 | |
with: | |
path: .venv | |
key: pydeps-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }} | |
- name: Install dependencies | |
run: poetry install --with test --no-interaction --no-root | |
if: steps.cache-deps.outputs.cache-hit != 'true' | |
- name: Install AutoPR | |
run: poetry install --no-interaction | |
- name: Configure git credentials | |
run: | | |
git config --global user.email "autopr@irgolic.com" | |
git config --global user.name "AutoPR" | |
- name: Run pytest | |
run: poetry run pytest |