1name: Run Eval Daily
2
3on:
4 schedule:
5 - cron: "0 2 * * *"
6 workflow_dispatch:
7
8env:
9 CARGO_TERM_COLOR: always
10 CARGO_INCREMENTAL: 0
11 RUST_BACKTRACE: 1
12
13jobs:
14 run_eval:
15 name: Run Eval
16 if: github.repository_owner == 'zed-industries'
17 runs-on: ubuntu-latest
18 steps:
19 - name: Checkout repo
20 uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
21 with:
22 clean: false
23
24 - name: Setup Rust
25 uses: dtolnay/rust-toolchain@stable
26
27 - name: Run cargo eval
28 run: cargo run -p eval