Skip to content

feat: Channel and Sampler return their index with .index(). Fixes #398 #99

feat: Channel and Sampler return their index with .index(). Fixes #398

feat: Channel and Sampler return their index with .index(). Fixes #398 #99

Workflow file for this run

name: Tests
on: pull_request
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Run test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Checkout glTF Sample Assets
uses: actions/checkout@v2
with:
repository: KhronosGroup/glTF-Sample-Assets
path: glTF-Sample-Assets
- name: Tests (default features)
run: cargo test --all --release
- name: Tests (all features)
run: cargo test --all --all-features --release
- name: Formatting
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-features