fix CI #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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,glfw_default --no-default-features | |
- name: Audit | |
run: cargo audit |