Skip to content

small fixes for emscripten support (luaegui) #30

small fixes for emscripten support (luaegui)

small fixes for emscripten support (luaegui) #30

Workflow file for this run

on: [push, pull_request]
name: check everything
env:
CARGO_INCREMENTAL: 0
jobs:
cargo-check:
name: cargo-check
runs-on: ${{matrix.os}}-latest
strategy:
matrix:
os: [ubuntu, windows, macos]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Rust Cache
uses: Swatinem/rust-cache@v1
- name: Install dependencies # for glfw and rfd
if: ${{matrix.os == 'ubuntu'}}
run: sudo apt update && sudo apt install --no-install-recommends libglfw3-dev libgtk-3-dev
- name: Fmt
run: cargo fmt --check
- name: Check
run: cargo check --workspace --features=three_d
- name: Clippy
run: cargo clippy --workspace --features=three_d -- -D warnings
- name: Build
run: cargo build --workspace --features=three_d
- name: Build (Wgpu)
run: cargo build -p egui_overlay --features=egui_default,wgpu --no-default-features
- name: Audit
run: cargo audit