[Fix] Visiting recursive function would result in Recursion Error #40
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: Main | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| tox: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12", "3.13"] | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - uses: yezz123/setup-uv@v4 | |
| - name: Pin python-version ${{ matrix.python-version }} | |
| run: uv python pin ${{ matrix.python-version }} | |
| - name: Setup python ${{ matrix.python-version }} and uv | |
| shell: bash | |
| run: | | |
| uv sync --frozen | |
| - name: Install dependencies | |
| run: make install | |
| - name: Run tests | |
| run: make test | |
| - name: Run check | |
| run: make check |