iced_plot 0.5.0

A GPU-accelerated plotting widget for Iced.
Documentation
name: CI

on:
  pull_request:
  push:
    branches:
      - main

jobs:
  checks:
    name: Rust and shaders
    runs-on: ubuntu-latest

    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Install Rust
        uses: dtolnay/rust-toolchain@stable
        with:
          components: clippy, rustfmt

      - name: Cache Cargo
        uses: Swatinem/rust-cache@v2

      - name: Check formatting
        run: cargo fmt --check

      - name: Run Clippy
        run: cargo clippy --all-features --all-targets

      - name: Install naga CLI
        run: cargo install naga-cli --version 29.0.3 --locked

      - name: Validate WGSL shaders
        run: naga --bulk-validate src/shaders/*.wgsl