Skip to content

Update to egui 0.28.0 (#51) #293

Update to egui 0.28.0 (#51)

Update to egui 0.28.0 (#51) #293

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Clippy
run: cargo clippy -- -Dwarnings
- name: Check all features pulldown
run: cargo check --no-default-features --features pulldown_cmark,better_syntax_highlighting,macros
- name: Check all features comrak
run: cargo check --no-default-features --features comrak,better_syntax_highlighting,macros
- name: Cargo fmt
run: cargo fmt --check -q
- name: Test
run: cargo test --features macros