Skip to content

build(deps): update eframe requirement from 0.26 to 0.28 #134

build(deps): update eframe requirement from 0.26 to 0.28

build(deps): update eframe requirement from 0.26 to 0.28 #134

Workflow file for this run

name: CI
on:
- push
- pull_request
- workflow_dispatch
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
RUSTFLAGS: '-C debuginfo=0'
jobs:
Check:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Install whiskers
run: cargo install catppuccin-whiskers
- name: Check formatting
run: cargo fmt --check
- name: Run Clippy
run: cargo clippy -- -D warnings
Test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Install whiskers
run: cargo install catppuccin-whiskers
- name: Run tests
run: cargo test