Skip to content

lsp: Update ElementRcNode to return the full debug info #1923

lsp: Update ElementRcNode to return the full debug info

lsp: Update ElementRcNode to return the full debug info #1923

Workflow file for this run

# Copyright © SixtyFPS GmbH <info@slint.dev>
# SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
name: autofix.ci # needed to securely identify the workflow
on:
pull_request:
branches: [master, "feature/*"]
push:
branches: [master, "feature/*"]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref || github.run_id }}
cancel-in-progress: true
jobs:
format_fix:
runs-on: ubuntu-24.04
env:
CARGO_INCREMENTAL: false
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
- name: Run fixes
run: mise run --force --jobs=1 'ci:autofix:fix'
- name: Suggest format changes
uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef
lint_typecheck:
runs-on: ubuntu-24.04
env:
CARGO_INCREMENTAL: false
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
- name: Run lints
run: mise run --force --jobs=1 'ci:autofix:lint'