From da8d230a5b795caff91a9308074f30c651aea579 Mon Sep 17 00:00:00 2001 From: Josh Humphries <2035234+jhump@users.noreply.github.com> Date: Mon, 17 Apr 2023 10:28:53 -0400 Subject: [PATCH] only run linters with go 1.19 --- .circleci/config.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b12915b..1465796 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,7 +4,7 @@ shared_configs: - run: name: Run tests command: | - make ci + make test # Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference version: 2.1 @@ -25,7 +25,12 @@ jobs: working_directory: ~/repo docker: - image: cimg/go:1.19 - steps: *simple_job_steps + steps: + - checkout + - run: + name: Run tests and linters + command: | + make ci workflows: pr-build-test: