From 4d52126c6342c11b48fa722cb558fb8bbfd3beb3 Mon Sep 17 00:00:00 2001 From: Tim Perry Date: Tue, 8 Jul 2025 14:50:06 +0200 Subject: [PATCH] Widen the testing API version range further --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ec113f..e751e04 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,8 @@ jobs: strategy: fail-fast: false matrix: - api-level: [28, 29, 30, 31, 32, 33, 34] + # We skip 27 - no x86_64 + google_apis seems to be available for that level? + api-level: [22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34] steps: - uses: actions/checkout@v4