randomized_tests.yml

 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    runs-on:
22      - buildjet-16vcpu-ubuntu-2204
23    steps:
24      - name: Install Node
25        uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
26        with:
27          node-version: "18"
28
29      - name: Checkout repo
30        uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
31        with:
32          clean: false
33
34      - name: Run randomized tests
35        run: script/randomized-test-ci