Skip to content

bump egui to 0.30.0 (#23) #52

bump egui to 0.30.0 (#23)

bump egui to 0.30.0 (#23) #52

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up cargo cache
uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build
- name: Check formatting
run: cargo fmt --all -- --check
- name: Lint
run: cargo clippy -- -D warnings