mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
6620f5513c
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
604 B
YAML
24 lines
604 B
YAML
name: Rust Client Check
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Change versions"]
|
|
types:
|
|
- completed
|
|
push:
|
|
paths:
|
|
- "rust-client/**"
|
|
- "backend/**/*.rs"
|
|
- "backend/windmill-api/openapi.yaml"
|
|
- "version.txt"
|
|
- "flake.nix"
|
|
- ".github/workflows/rust-client-check.yml"
|
|
|
|
jobs:
|
|
check_rust_client:
|
|
runs-on: ubicloud-standard-8
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: cachix/install-nix-action@v31
|
|
- name: Check rust client builds
|
|
run: cd rust-client && nix develop ../ --command ./dev.nu --check
|
|
timeout-minutes: 16 |