From 0f44611885e0baf4333bd9de206b4cf289def2d9 Mon Sep 17 00:00:00 2001 From: Emma Doyle Date: Tue, 23 May 2023 17:43:13 -0400 Subject: [PATCH] Check src scripts (#66) * master: update ignore * check-src-scripts: check source scripts as well --------- Co-authored-by: Emma Doyle --- .circleci/scripts.ignore | 2 ++ src/executors/python.yml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 .circleci/scripts.ignore diff --git a/.circleci/scripts.ignore b/.circleci/scripts.ignore new file mode 100644 index 0000000..cf28f11 --- /dev/null +++ b/.circleci/scripts.ignore @@ -0,0 +1,2 @@ +# Include scripts' changes under src/ +!src/scripts/ \ No newline at end of file diff --git a/src/executors/python.yml b/src/executors/python.yml index bf91d15..afe501f 100644 --- a/src/executors/python.yml +++ b/src/executors/python.yml @@ -2,7 +2,7 @@ description: Base python CircleCI executor parameters: tag: default: "3.10" - description: Latest Python 3. + description: Latest Python 3.10 type: string docker: - - image: cimg/python:<< parameters.tag >> + - image: cimg/python:<< parameters.tag >> \ No newline at end of file