From f0ffe894aa6974c898d7122b02c46b39f85672c2 Mon Sep 17 00:00:00 2001 From: Christian Renz Date: Sat, 30 Jul 2022 23:14:10 +0800 Subject: Rename run-tests-simple.yml to manual-tests-simple.yml --- .github/workflows/manual-tests-simple.yml | 26 ++++++++++++++++++++++++++ .github/workflows/run-tests-simple.yml | 26 -------------------------- 2 files changed, 26 insertions(+), 26 deletions(-) create mode 100644 .github/workflows/manual-tests-simple.yml delete mode 100644 .github/workflows/run-tests-simple.yml diff --git a/.github/workflows/manual-tests-simple.yml b/.github/workflows/manual-tests-simple.yml new file mode 100644 index 0000000..c2a776b --- /dev/null +++ b/.github/workflows/manual-tests-simple.yml @@ -0,0 +1,26 @@ +name: Manually run tests (Ubuntu, Perl 5 latest) + +on: + workflow_dispatch: + +jobs: + # This workflow contains a single job called "build" + tests: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + - uses: shogo82148/actions-setup-perl@v1 + with: + perl-version: '5.34' + install-modules-with: cpanm + install-modules-args: --with-develop --with-configure + - name: Identify perl version + run: perl -V + - name: Build module + run: perl Makefile.PL + - name: Run tests + run: make test TEST_VERBOSE=1 diff --git a/.github/workflows/run-tests-simple.yml b/.github/workflows/run-tests-simple.yml deleted file mode 100644 index c2a776b..0000000 --- a/.github/workflows/run-tests-simple.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Manually run tests (Ubuntu, Perl 5 latest) - -on: - workflow_dispatch: - -jobs: - # This workflow contains a single job called "build" - tests: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - uses: shogo82148/actions-setup-perl@v1 - with: - perl-version: '5.34' - install-modules-with: cpanm - install-modules-args: --with-develop --with-configure - - name: Identify perl version - run: perl -V - - name: Build module - run: perl Makefile.PL - - name: Run tests - run: make test TEST_VERBOSE=1 -- cgit v1.2.3