From 914a809b6c243fb04ccf9999947b4126a182d855 Mon Sep 17 00:00:00 2001 From: mukesh-deriv <85932084+mukesh-deriv@users.noreply.github.com> Date: Fri, 29 Sep 2023 13:47:14 +0800 Subject: [PATCH] Delete .circleci directory --- .circleci/config.yml | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index f39ac14..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,44 +0,0 @@ -jobs: - test: - parameters: - perl-version: - description: The Perl version we want to test with - type: string - default: "5.34" - docker: - - image: perldocker/perl-tester:<< parameters.perl-version >> - steps: - - checkout - - run: - name: pre_install - command: | - cpm install --no-test \ - --mirror=http://cpan.cpantesters.org/ Test::Requires::Git Devel::Cover::Report::Codecov - - - run: - name: Install dist deps - command: | - cpanm -n --installdeps . - - run: - name: Run Tests - command: | - perl Makefile.PL && make build && make test - - run: - name: after_success - command: | - cover -test -report codecov - -workflows: - build-workflow: - jobs: &1 - - test: - matrix: - parameters: - perl-version: - - "5.24" - - "5.26" - - "5.28" - - "5.30" - - "5.32" - - "5.34" -version: 2.1