fix(financial): rewrite get_segment_data and bump to v1.0.8 #48
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: Lint | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install dependencies | |
| run: | | |
| pip install .[dev] | |
| - name: Ruff format check | |
| run: ruff format --check . | |
| - name: Ruff lint | |
| run: ruff check . | |
| - name: Mypy | |
| run: mypy sec_edgar_mcp |