feat: Add ignore_type_hint to the package API #1065
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: | |
| - dev | |
| - prod | |
| pull_request: | |
| jobs: | |
| ci: | |
| strategy: | |
| matrix: | |
| python-version: ["3.12", "3.13", "3.14"] | |
| name: Continuous Integration ・ Python ${{ matrix.python-version }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Run checkout | |
| uses: actions/checkout@v5 | |
| - name: Set up environment | |
| uses: ./.github/actions/environment | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Check code style | |
| uses: ./.github/actions/code-style | |
| - name: Tests | |
| uses: ./.github/actions/tests |