Files
zed/extensions/workflows/run_tests.yml
Finn Evers 904d90bee7 extension_ci: Run tests on pushes to main (#44079)
This seems sensible to do - it already was the case prior but
indirectly, lets rather be explicit about this.

Release Notes:

- N/A

Co-authored-by: Agus Zubiaga <agus@zed.dev>
2025-12-03 15:13:15 +00:00

17 lines
488 B
YAML

# Generated from xtask::workflows::extensions::run_tests within the Zed repository.
# Rebuild with `cargo xtask workflows`.
name: extensions::run_tests
on:
pull_request:
branches:
- '**'
push:
branches:
- main
jobs:
call_extension_tests:
uses: zed-industries/zed/.github/workflows/extension_tests.yml@main
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.ref_name == 'main' && github.sha || 'anysha' }}pr
cancel-in-progress: true