[ty] Treat Callable
s as bound-method descriptors in special cases (…
#1041
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
# Publish the ty playground. | |
name: "[ty Playground] Release" | |
permissions: {} | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "crates/ty*/**" | |
- "crates/ruff_db/**" | |
- "crates/ruff_python_ast/**" | |
- "crates/ruff_python_parser/**" | |
- "playground/**" | |
- ".github/workflows/publish-ty-playground.yml" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
cancel-in-progress: true | |
env: | |
CARGO_INCREMENTAL: 0 | |
CARGO_NET_RETRY: 10 | |
CARGO_TERM_COLOR: always | |
RUSTUP_MAX_RETRIES: 10 | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
env: | |
CF_API_TOKEN_EXISTS: ${{ secrets.CF_API_TOKEN != '' }} | |
steps: | |
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
with: | |
persist-credentials: false | |
- name: "Install Rust toolchain" | |
run: rustup target add wasm32-unknown-unknown | |
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0 | |
with: | |
node-version: 22 | |
- uses: jetli/wasm-bindgen-action@20b33e20595891ab1a0ed73145d8a21fc96e7c29 # v0.2.0 | |
- name: "Install Node dependencies" | |
run: npm ci | |
working-directory: playground | |
- name: "Run TypeScript checks" | |
run: npm run check | |
working-directory: playground | |
- name: "Build ty playground" | |
run: npm run build --workspace ty-playground | |
working-directory: playground | |
- name: "Deploy to Cloudflare Pages" | |
if: ${{ env.CF_API_TOKEN_EXISTS == 'true' }} | |
uses: cloudflare/wrangler-action@da0e0dfe58b7a431659754fdf3f186c529afbe65 # v3.14.1 | |
with: | |
apiToken: ${{ secrets.CF_API_TOKEN }} | |
accountId: ${{ secrets.CF_ACCOUNT_ID }} | |
# `github.head_ref` is only set during pull requests and for manual runs or tags we use `main` to deploy to production | |
command: pages deploy playground/ty/dist --project-name=ty-playground --branch ${{ github.head_ref || 'main' }} --commit-hash ${GITHUB_SHA} |