mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-12-08 21:26:17 +00:00
66 lines
1.6 KiB
YAML
66 lines
1.6 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches-ignore: [ staging.tmp ]
|
|
pull_request:
|
|
branches-ignore: [ staging.tmp ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [macos-10.15, ubuntu-18.04, windows-2019]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: cargo check --all-features
|
|
- run: cargo test --no-run
|
|
|
|
wasm:
|
|
runs-on: [ubuntu-18.04]
|
|
env:
|
|
RUSTFLAGS: --cfg=web_sys_unstable_apis
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: rustup target add wasm32-unknown-unknown
|
|
- name: Check WebGPU
|
|
run: cargo check --all-targets --target=wasm32-unknown-unknown
|
|
- name: Check WebGL
|
|
run: cargo check --all-targets --target=wasm32-unknown-unknown --features webgl
|
|
|
|
docs:
|
|
runs-on: [ubuntu-18.04]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install latest nightly
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: nightly
|
|
override: true
|
|
continue-on-error: true
|
|
- name: cargo doc
|
|
run: cargo --version; cargo doc --lib --no-deps
|
|
continue-on-error: true
|
|
|
|
lint:
|
|
name: Clippy
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: stable
|
|
override: true
|
|
- run: rustup component add clippy
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: clippy
|
|
args: -- -D warnings
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: fmt
|
|
args: -- --check
|