pebble-engine 0.9.5

A modular, ECS-style graphics/app framework for Rust.
Documentation
name: Examples

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

env:
  CARGO_TERM_COLOR: always

jobs:
  check:
    name: Check ${{ matrix.example }}
    runs-on: ubuntu-latest
    strategy:
      matrix:
        example:
          - clear_screen
          - hello_triangle
          - textured_quad
          - orbit_camera
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@stable
      - uses: Swatinem/rust-cache@v2
      - name: Check
        run: cargo check --manifest-path examples/${{ matrix.example }}/Cargo.toml