Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions .github/workflows/xtask.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: xtask

on:
pull_request:
paths:
- ".github/workflows/xtask.yml"
- "xtask/**/*"

env:
#
# Dependency versioning
#

# This is the MSRV used by `wgpu` itself and all surrounding infrastructure.
REPO_MSRV: "1.88"

#
# Environment variables
#

CARGO_INCREMENTAL: false
CARGO_TERM_COLOR: always
RUST_LOG: info
RUST_BACKTRACE: "1"
CACHE_SUFFIX: c # cache busting

jobs:
changelog:
timeout-minutes: 2

name: Run `cargo test` in `xtask/`
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v5
with:
fetch-depth: 0

- name: Run `cargo test` in `xtask/`
run: |
cd xtask
cargo test