docs: resolve TODOs in introduction (#1264) #1403
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
| # SPDX-FileCopyrightText: Copyright (c) 2019-2026 Aibolit | |
| # SPDX-License-Identifier: MIT | |
| --- | |
| name: ty | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| typecheck: | |
| name: Run Ty Type Checker | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - name: Install uv (from Astral) | |
| run: | | |
| curl -LsSf https://astral.sh/uv/0.7.13/install.sh | bash | |
| echo "$HOME/.cargo/bin" >> "$GITHUB_PATH" | |
| - name: Install aibolit dependencies | |
| run: | | |
| make requirements | |
| - name: Run Ty | |
| run: | | |
| uvx ty==0.0.1-alpha.8 check |