Skip to content

Commit

Permalink
Added trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Jan 7, 2025
1 parent 02d3852 commit 1dde5a6
Showing 1 changed file with 22 additions and 11 deletions.
33 changes: 22 additions & 11 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,33 @@
---
name: Grammar::Improver

on:
push:
branches:
- '*'
tags-ignore:
- '*'
# workflow_dispatch:
pull_request:

jobs:
test:
runs-on: ubuntu-latest
strategy:
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

0 comments on commit 1dde5a6

Please sign in to comment.