From 781e1fd658170128e6a40b2f9da08af698c73306 Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Thu, 1 Sep 2022 14:48:03 +0100 Subject: [PATCH] ci: string in expressions should use single quotes --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d82b789..ea6c0f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,7 +68,7 @@ jobs: build --features native-activity - name: Build agdk-mainloop example - if: matrix.rust_version == "stable" + if: matrix.rust_version == 'stable' working-directory: examples/agdk-mainloop run: > cargo ndk @@ -79,7 +79,7 @@ jobs: -o app/src/main/jniLibs/ -- build - name: Build na-mainloop example - if: matrix.rust_version == "stable" + if: matrix.rust_version == 'stable' working-directory: examples/na-mainloop run: > cargo ndk @@ -90,7 +90,7 @@ jobs: -o app/src/main/jniLibs/ -- build - name: Build agdk-egui example - if: matrix.rust_version == "stable" + if: matrix.rust_version == 'stable' working-directory: examples/agdk-egui run: > cargo ndk @@ -101,7 +101,7 @@ jobs: -o app/src/main/jniLibs/ -- build - name: Build agdk-eframe example - if: matrix.rust_version == "stable" + if: matrix.rust_version == 'stable' working-directory: examples/agdk-eframe run: > cargo ndk