Skip to content

comment out entire workflow file #3

comment out entire workflow file

comment out entire workflow file #3

Workflow file for this run

# name: Test
# on:
# push:
# branches:
# - main
# - '*'
# schedule:
# - cron: '0 11 * * *'
# jobs:
# build:
# env:
# TOGETHER_API_KEY: ${{ secrets.TOGETHER_API_KEY }}
# SERPAPI_API_KEY: ${{ secrets.SERPAPI_API_KEY }}
# LANGCHAIN_API_KEY: ${{ secrets.LANGCHAIN_API_KEY }}
# LANGCHAIN_TRACING_V2: true
# LANGCHAIN_ENDPOINT: https://api.smith.langchain.com
# LANGCHAIN_PROJECT: wai-ga
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Set up python
# uses: actions/setup-python@v5
# with:
# python-version: 3.11
# - name: Install poetry
# uses: snok/install-poetry@v1
# - name: Install dependencies
# run: poetry install --no-interaction
# - name: Run pytest
# run: |
# poetry run pytest -rP