round_end event is off by 1 #366
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: Test | |
| on: | |
| pull_request_target: | |
| branches: | |
| - main | |
| jobs: | |
| build_and_test: | |
| name: Test Parser Rust | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: src/parser | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Set up Rust toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| - name: Install Protoc | |
| uses: arduino/setup-protoc@v3 | |
| - name: Build in src/parser directory | |
| run: cargo test --release | |
| test_python_bindings: | |
| name: Test Python Bindings | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] | |
| defaults: | |
| run: | |
| working-directory: src/python | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Print commit hash | |
| run: git rev-parse HEAD | |
| - name: Set up Rust toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Protoc | |
| uses: arduino/setup-protoc@v3 | |
| - name: Run signature test | |
| working-directory: ./src/python | |
| run: | | |
| python3 -m venv .venv | |
| source .venv/bin/activate | |
| pip install maturin patchelf mypy pandas-stubs | |
| maturin develop | |
| python3 tests/signature_tests.py | |
| python3 -m mypy.stubtest demoparser2 --allowlist tests/mypy-stubtest-allowlist.txt |