docs(solver): guard against recently removed patterns (§58) (#443) #623
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| workflow_dispatch: | |
| jobs: | |
| python: | |
| name: Python ${{ matrix.python-version }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: | |
| - "3.10" | |
| - "3.12" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: python -m pip install -r requirements.txt | |
| - name: Compile Python files | |
| run: python -m compileall scripts tests | |
| - name: CLI smoke tests | |
| run: | | |
| python scripts/analyze_repos.py --help | |
| python scripts/create_issues.py --help | |
| python scripts/create_backlog_issues.py --help | |
| python scripts/solve_issues.py --help | |
| - name: Unit tests | |
| run: python -m unittest discover -s tests |