From b5a6a4e616216be0987746e84372e015e47ed6b2 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Sat, 3 May 2025 21:36:38 +0900 Subject: [PATCH] ci: test winit-core --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ceac9bc..c7eb10c1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -179,13 +179,16 @@ jobs: - name: Build crate run: cargo $CMD build $OPTIONS + - name: Test winit core + run: cargo test -p winit-core + # Test only on Linux x86_64, so we avoid spending unnecessary CI hours. - name: Test dpi crate if: > contains(matrix.platform.name, 'Linux 64bit') && matrix.toolchain != '1.80' run: cargo test -p dpi - + - name: Check dpi crate (no_std) if: > contains(matrix.platform.name, 'Linux 64bit') &&