Skip to content

👁️ glennga has pushed a new commit! #23

👁️ glennga has pushed a new commit!

👁️ glennga has pushed a new commit! #23

name: Couchbase Agent Catalog GitHub Actions
run-name: 👁️ ${{ github.actor }} has pushed a new commit!
on: [ push ]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v4
- name: Verify toml files exist
uses: thebinaryfelix/[email protected]
with:
files: "pyproject.toml,\
libs/agentc/pyproject.toml,\
libs/agentc_core/pyproject.toml,\
libs/agentc_cli/pyproject.toml,\
libs/agentc_langchain/pyproject.toml"
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- name: Set up Python Poetry
uses: mishaga/action-poetry@1
with:
python-version: "3.12"
poetry-version: "latest"
shell: "bash"
- name: Install repository with Poetry
run: |
poetry install
- run: echo "🔥 Starting the core smoke tests (🤞 please don't break!)."
- name: Run agentc-core smoke tests
run: |
poetry shell
cd libs/agentc_core
pytest -m smoke -v
- run: echo "🍏 This job's status is ${{ job.status }}."