👁️ glennga has pushed a new commit! #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 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 existence of essential files | |
# uses: thebinaryfelix/[email protected] | |
# with: | |
# files: 'README.md, pyproject.toml, .gitignore, libs/agentc_core/agentc_cli/, libs/agentc_core/agentc_core/, libs/agentc_core/tests/, libs/agentc_langchain/agentc_langchain/, libs/agentc_langchain/examples/' | |
# - name: Verify command file existence | |
# uses: thebinaryfelix/[email protected] | |
# with: | |
# files: 'libs/agentc_core/agentc_cli/cmds/index.py, libs/agentc_core/agentc_cli/cmds/publish.py, libs/agentc_core/agentc_cli/cmds/version.py, libs/agentc_core/agentc_cli/cmds/find.py, | |
# libs/agentc_core/agentc_cli/cmds/clean.py, libs/agentc_core/agentc_cli/cmds/env.py, libs/agentc_core/agentc_cli/cmds/execute.py, libs/agentc_core/agentc_cli/cmds/status.py, libs/agentc_core/agentc_cli/cmds/util.py' | |
- 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 smoke tests (🤞 please don't break!)." | |
- name: Run smoke tests | |
run: | | |
poetry run pytest -m smoke -v | |
- run: echo "🍏 This job's status is ${{ job.status }}." |