This repository was archived by the owner on May 13, 2026. It is now read-only.
Update dependency setuptools to v78 [SECURITY] #79
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: NameAI Python - Unit Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "apps/api.nameai.io/**" | |
| pull_request: | |
| branches: | |
| - main | |
| - staging | |
| paths: | |
| - "apps/api.nameai.io/**" | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| python-version: ["3.10", "3.11", "3.12"] | |
| steps: | |
| - name: Checkout NameKit repo | |
| uses: actions/checkout@v4 | |
| - name: Install poetry | |
| run: pipx install poetry | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: "poetry" | |
| - name: Install dependencies | |
| working-directory: ./apps/api.nameai.io | |
| run: poetry install --extras "lambda" | |
| - name: Run tests | |
| working-directory: ./apps/api.nameai.io | |
| run: poetry run pytest -vv |