mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
b34ab6f3a1
This PR removes the references to initializing Git submodules as part of building Zed. These are no longer needed, as our only submodule was removed in #11672. Release Notes: - N/A
37 lines
661 B
YAML
37 lines
661 B
YAML
name: Randomized Tests
|
|
|
|
concurrency: randomized-tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- randomized-tests-runner
|
|
# schedule:
|
|
# - cron: '0 * * * *'
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
CARGO_INCREMENTAL: 0
|
|
RUST_BACKTRACE: 1
|
|
ZED_SERVER_URL: https://zed.dev
|
|
|
|
jobs:
|
|
tests:
|
|
name: Run randomized tests
|
|
runs-on:
|
|
- self-hosted
|
|
- randomized-tests
|
|
steps:
|
|
- name: Install Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "18"
|
|
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
clean: false
|
|
|
|
- name: Run randomized tests
|
|
run: script/randomized-test-ci
|