1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

Fix cargo run -p egui_demo_app (#1343)

Broken by https://github.com/emilk/egui/pull/1303
This commit is contained in:
Emil Ernerfeldt
2022-03-08 08:26:43 +01:00
committed by GitHub
parent 37c9f116bf
commit d8300037ad
3 changed files with 17 additions and 10 deletions

View File

@@ -56,6 +56,19 @@ jobs:
command: check
args: -p egui_demo_app --lib --target wasm32-unknown-unknown
check_egui_demo_app:
name: cargo check -p egui_demo_app
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.56.0
override: true
- name: check
run: cargo check -p egui_demo_app
check_wasm_eframe_with_features:
name: cargo check wasm eframe
runs-on: ubuntu-20.04