From 1dde5a62c60a6429f39727a30e23b74838142011 Mon Sep 17 00:00:00 2001 From: Nigel Horne Date: Tue, 7 Jan 2025 10:48:31 -0500 Subject: [PATCH] Added trigger --- .github/workflows/ubuntu.yml | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index c0cec82..4448d8f 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -1,4 +1,15 @@ --- +name: Grammar::Improver + +on: + push: + branches: + - '*' + tags-ignore: + - '*' + # workflow_dispatch: + pull_request: + jobs: test: runs-on: ubuntu-latest @@ -6,17 +17,17 @@ jobs: matrix: perl-version: ['5.30', '5.32', '5.34'] steps: - - name: Checkout code - uses: actions/checkout@v3 + - name: Checkout code + uses: actions/checkout@v3 - - name: Set up Perl - uses: shogo82148/actions-setup-perl@v1 - with: - perl-version: ${{ matrix.perl-version }} + - name: Set up Perl + uses: shogo82148/actions-setup-perl@v1 + with: + perl-version: ${{ matrix.perl-version }} - - name: Install dependencies - run: | - cpanm --notest --quiet --installdeps . + - name: Install dependencies + run: | + cpanm --notest --quiet --installdeps . - - name: Run tests - run: prove -lr t + - name: Run tests + run: prove -lr t