mirror of
https://github.com/emilk/egui.git
synced 2026-06-26 22:53:14 -04:00
Add simple Windows CI workflow check (#2663)
* Add simple Windows CI workflow check * Fix Windows build in CI * Windows fix
This commit is contained in:
21
.github/workflows/rust.yml
vendored
21
.github/workflows/rust.yml
vendored
@@ -153,3 +153,24 @@ jobs:
|
||||
uses: Swatinem/rust-cache@v2
|
||||
- run: cargo check --features wgpu --target aarch64-linux-android
|
||||
working-directory: crates/eframe
|
||||
|
||||
windows:
|
||||
name: Check Windows
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
profile: minimal
|
||||
toolchain: 1.65.0
|
||||
override: true
|
||||
|
||||
- name: Set up cargo cache
|
||||
uses: Swatinem/rust-cache@v2
|
||||
|
||||
- name: Check
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
command: check
|
||||
args: --all-targets --all-features
|
||||
|
||||
|
||||
Reference in New Issue
Block a user