Skip to content

Commit

Permalink
first pass implementing twitter langchain gha unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stat committed Nov 18, 2024
1 parent 60a56bf commit 2a5e155
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,41 @@ jobs:

- name: Run tests
run: poetry run make test

test-twitter-langchain:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./twitter-langchain
strategy:
matrix:
python: ['3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: latest
virtualenvs-create: true
virtualenvs-in-project: true

- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: ./twitter-langchain/.venv
key: venv-twitter-langchain-${{ runner.os }}-${{ matrix.python }}-${{ hashFiles('cdp-twitter-langchain/poetry.lock') }}

- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --with dev

- name: Run tests
run: poetry run make test

0 comments on commit 2a5e155

Please sign in to comment.