File tree 3 files changed +17
-10
lines changed
3 files changed +17
-10
lines changed Original file line number Diff line number Diff line change 56
56
command : check
57
57
args : -p egui_demo_app --lib --target wasm32-unknown-unknown
58
58
59
+ check_egui_demo_app :
60
+ name : cargo check -p egui_demo_app
61
+ runs-on : ubuntu-20.04
62
+ steps :
63
+ - uses : actions/checkout@v2
64
+ - uses : actions-rs/toolchain@v1
65
+ with :
66
+ profile : minimal
67
+ toolchain : 1.56.0
68
+ override : true
69
+ - name : check
70
+ run : cargo check -p egui_demo_app
71
+
59
72
check_wasm_eframe_with_features :
60
73
name : cargo check wasm eframe
61
74
runs-on : ubuntu-20.04
Original file line number Diff line number Diff line change @@ -100,15 +100,8 @@ pub mod winit;
100
100
#[ cfg( all( not( target_arch = "wasm32" ) , feature = "winit" ) ) ]
101
101
pub use winit:: * ;
102
102
103
- #[ cfg( all(
104
- not( target_arch = "wasm32" ) ,
105
- feature = "persistence" ,
106
- feature = "winit"
107
- ) ) ]
103
+ #[ cfg( all( not( target_arch = "wasm32" ) , feature = "winit" ) ) ]
108
104
mod epi_backend;
109
- #[ cfg( all(
110
- not( target_arch = "wasm32" ) ,
111
- feature = "persistence" ,
112
- feature = "winit"
113
- ) ) ]
105
+
106
+ #[ cfg( all( not( target_arch = "wasm32" ) , feature = "winit" ) ) ]
114
107
pub use epi_backend:: { run, NativeOptions } ;
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ cargo doc --document-private-items --no-deps --all-features
37
37
38
38
(cd eframe && cargo check --all-features)
39
39
(cd egui && cargo check --all-features)
40
+ (cd egui_demo_app && cargo check --all-features)
40
41
(cd egui_extras && cargo check --all-features)
41
42
(cd egui_glium && cargo check --all-features)
42
43
(cd egui_glow && cargo check --all-features)
You can’t perform that action at this time.
0 commit comments