Updated Agent MD #414
Workflow file for this run
This file contains hidden or 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: unit_tests | |
| on: | |
| push: | |
| branches: [master, dev] | |
| paths-ignore: | |
| - 'Docs/**' # Docs folder in root of repo | |
| - '**/*.md' # .md files anywhere in the repo | |
| - '**/LICENSE' # LICENSE files anywhere in the repo | |
| - '**/.gitignore' # .gitignore files anywhere in the repo | |
| - '**/.cursorrules' | |
| pull_request: | |
| branches: [master, dev] | |
| paths-ignore: | |
| - 'Docs/**' # Docs folder in root of repo | |
| - '**/*.md' # .md files anywhere in the repo | |
| - '**/LICENSE' # LICENSE files anywhere in the repo | |
| - '**/.gitignore' # .gitignore files anywhere in the repo | |
| - '**/.cursorrules' | |
| workflow_dispatch: | |
| workflow_run: | |
| workflows: ["build"] | |
| types: [completed] | |
| env: | |
| BUILD_PYTHON_VERSION: "3.14" | |
| BUILD_POETRY_VERSION: "2.4.1" | |
| BUILD_SETUPTOOLS_VERSION: "82.0.1" | |
| BUILD_POETRY_PLUGIN_EXPORT_VERSION: "1.10.0" | |
| PACKAGE_NAME: csv2notion_neo | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| env: | |
| POETRY_VIRTUALENVS_CREATE: false | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Python ${{ env.BUILD_PYTHON_VERSION }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ env.BUILD_PYTHON_VERSION }} | |
| - name: Install setuptools | |
| run: pip install setuptools==${{ env.BUILD_SETUPTOOLS_VERSION }} | |
| - name: Set up Poetry ${{ env.BUILD_POETRY_VERSION }} | |
| uses: abatilo/actions-poetry@v3.0.2 | |
| with: | |
| poetry-version: ${{ env.BUILD_POETRY_VERSION }} | |
| poetry-plugins: poetry-plugin-export==${{ env.BUILD_POETRY_PLUGIN_EXPORT_VERSION }} | |
| - name: Cache Poetry dependencies | |
| uses: actions/cache@v5 | |
| with: | |
| path: | | |
| .venv | |
| ~/.cache/pypoetry | |
| key: ${{ runner.os }}-${{ hashFiles('poetry.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}- | |
| - name: Install the necessary libraries to run csv2notion_neo | |
| run: poetry install --no-root | |
| - name: Run comprehensive tests | |
| run: pytest tests/test_comprehensive.py -v -s --tb=long |