Skip to content

Commit

Permalink
Add a dummy yaml file for a separate fmt/lint/typecheck step
Browse files Browse the repository at this point in the history
This makes debugging the implementation in a PR/branch possible,
without running the entire CI step.
  • Loading branch information
tronical committed Oct 14, 2024
1 parent 463031b commit 328f99a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/fmt_lint_typecheck.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# 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

# Run various formatters, linters, and type-checkers (Rust, C++, TypeScript, etc.)
name: Format, Lint, and type-check

on:
workflow_call:
workflow_dispatch:

jobs:
format_lint_typecheck:
runs-on: ubuntu-24.04
env:
CARGO_INCREMENTAL: false
steps:
- uses: actions/checkout@v4

0 comments on commit 328f99a

Please sign in to comment.