From 26b0e284046e688b5a58c46228b92ffac17c82f6 Mon Sep 17 00:00:00 2001 From: Jintin Date: Sun, 19 Feb 2023 11:08:38 +0800 Subject: [PATCH] Updated config.yml --- .circleci/config.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8833ba4..d5c44f3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,12 +4,14 @@ orbs: android: circleci/android@2.1.2 jobs: - example-job: + build: docker: - - image: cimg/base:stable + - image: cimg/android:2023.02 steps: - - android/run-tests + - checkout + - run: ./gradlew androidDependencies + - run: ./gradlew lint test workflows: example-workflow: jobs: - - example-job \ No newline at end of file + - build \ No newline at end of file