docs: update CLI documentation for negmas and negotiate commands #913
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: CI | |
| on: | |
| push: | |
| branches: ["*"] | |
| pull_request: | |
| branches: ["*"] | |
| jobs: | |
| tests: | |
| name: "Python ${{ matrix.python-version }}" | |
| runs-on: "ubuntu-latest" | |
| timeout-minutes: 180 | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: "actions/checkout@v4" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v3 | |
| with: | |
| enable-cache: true | |
| - name: Set up Python ${{ matrix.python-version }} | |
| run: uv python install ${{ matrix.python-version }} | |
| - name: Install the project | |
| run: uv sync --extra testing --dev | |
| - name: "Install Jupyter Kernel" | |
| run: uv run -m ipykernel install --user --name=negmas | |
| - name: "Install Genius Bridge" | |
| run: uv run negmas genius-setup | |
| - name: "Run pytest for ${{ matrix.python-version }}" | |
| env: | |
| NEGMAS_IGNORE_TEST_NOTEBOOKS: "True" | |
| NEGMAS_FASTRUN: "True" | |
| run: "uv run pytest src/negmas tests/core || uv run pytest --last-failed src/negmas tests/core" |