Skip to content

👁️ glennga has pushed a new commit! #168

👁️ glennga has pushed a new commit!

👁️ glennga has pushed a new commit! #168

Workflow file for this run

name: tests
run-name: 👁️ ${{ github.actor }} has pushed a new commit!
on: [ push ]
jobs:
Tests:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- name: Verify toml files exist
uses: thebinaryfelix/check-file-existence-action@1.0.0
with:
files: "pyproject.toml,\
libs/agentc/pyproject.toml,\
libs/agentc_core/pyproject.toml,\
libs/agentc_cli/pyproject.toml,\
libs/agentc_langchain/pyproject.toml,\
libs/agentc_testing/pyproject.toml"
- 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 --with dev
- run: echo "🔥 Starting the core tests (🤞 please don't break!)."
- name: Verify Pytest installation
run: poetry show pytest
- name: Run agentc-core tests
run: poetry run bash -c "cd libs/agentc_core && pytest -m smoke -v"
- name: Run agentc-cli tests
run: poetry run bash -c "cd libs/agentc_cli && pytest -m smoke -v"
- name: Run agentc tests
run: poetry run bash -c "cd libs/agentc && pytest -m smoke -v"
- run: echo "🍏 This job's status is ${{ job.status }}."