Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

fixed claude api key for claude case #4

fixed claude api key for claude case

fixed claude api key for claude case #4

Workflow file for this run

name: Python Package CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Check out repository code
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.8' # You can specify multiple Python versions as a matrix if needed
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Configure Poetry
run: |
poetry config virtualenvs.create false # This avoids creating a virtual environment inside the action
- name: Install dependencies
run: |
poetry install
- name: Run tests
run: |
poetry run pytest tests/ # Assuming your tests are in the 'tests/' directory