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: