mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-27 19:02:07 +00:00
35 lines
738 B
YAML
35 lines
738 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:
|
|
- buildjet-16vcpu-ubuntu-2204
|
|
steps:
|
|
- name: Install Node
|
|
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
|
|
with:
|
|
node-version: "18"
|
|
|
|
- name: Checkout repo
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
|
with:
|
|
clean: false
|
|
|
|
- name: Run randomized tests
|
|
run: script/randomized-test-ci
|