File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ name : xtask
2+
3+ on :
4+ pull_request :
5+ paths :
6+ - " .github/workflows/xtask.yml"
7+ - " xtask/**/*"
8+
9+ env :
10+ #
11+ # Dependency versioning
12+ #
13+
14+ # This is the MSRV used by `wgpu` itself and all surrounding infrastructure.
15+ REPO_MSRV : " 1.88"
16+
17+ #
18+ # Environment variables
19+ #
20+
21+ CARGO_INCREMENTAL : false
22+ CARGO_TERM_COLOR : always
23+ RUST_LOG : info
24+ RUST_BACKTRACE : " 1"
25+ CACHE_SUFFIX : c # cache busting
26+
27+ jobs :
28+ changelog :
29+ timeout-minutes : 2
30+
31+ name : Run `cargo test` in `xtask/`
32+ runs-on : ubuntu-latest
33+
34+ steps :
35+ - name : Checkout repo
36+ uses : actions/checkout@v5
37+ with :
38+ fetch-depth : 0
39+
40+ - name : Run `cargo test` in `xtask/`
41+ run : |
42+ cd xtask
43+ cargo test
You can’t perform that action at this time.
0 commit comments