1name: Randomized Tests
2
3concurrency: randomized-tests
4
5on:
6 push:
7 branches:
8 - randomized-tests-runner
9 # schedule:
10 # - cron: '0 * * * *'
11
12env:
13 CARGO_TERM_COLOR: always
14 CARGO_INCREMENTAL: 0
15 RUST_BACKTRACE: 1
16 ZED_SERVER_URL: https://zed.dev
17
18jobs:
19 tests:
20 name: Run randomized tests
21 if: github.repository_owner == 'zed-industries'
22 runs-on:
23 - namespace-profile-16x32-ubuntu-2204
24 steps:
25 - name: Install Node
26 uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
27 with:
28 node-version: "18"
29
30 - name: Checkout repo
31 uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
32 with:
33 clean: false
34
35 - name: Run randomized tests
36 run: script/randomized-test-ci