Skip to content

Commit

Permalink
Merge pull request #2135 from mojolicious/github_annotations
Browse files Browse the repository at this point in the history
GitHub annotations
  • Loading branch information
kraih authored Nov 29, 2023
2 parents 79fd80a + 153befa commit 0081a40
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
run: |
cpanm -n --installdeps .
cpanm -n Cpanel::JSON::XS EV Role::Tiny
cpanm -n Test::Pod Test::Pod::Coverage
cpanm -n Test::Pod Test::Pod::Coverage TAP::Formatter::GitHubActions
- name: Run tests
run: prove -l t t/mojo t/mojolicious
run: prove --merge --formatter TAP::Formatter::GitHubActions -l t t/mojo t/mojolicious
env:
TEST_POD: 1
TEST_EV: 1
6 changes: 4 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
- name: perl -V
run: perl -V
- name: Install Dependencies
run: curl -L https://cpanmin.us | perl - --installdeps .
run: |
curl -L https://cpanmin.us | perl - --installdeps .
curl -L https://cpanmin.us | perl - -n TAP::Formatter::GitHubActions
- name: Run Tests
run: prove -l t t/mojo t/mojolicious
run: prove --merge --formatter TAP::Formatter::GitHubActions -l t t/mojo t/mojolicious
6 changes: 4 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
- name: perl -V
run: perl -V
- name: Install Dependencies
run: curl -L https://cpanmin.us | perl - --installdeps .
run: |
curl -L https://cpanmin.us | perl - --installdeps .
curl -L https://cpanmin.us | perl - -n TAP::Formatter::GitHubActions
- name: Run Tests
run: prove -l t t/mojo t/mojolicious
run: prove --merge --formatter TAP::Formatter::GitHubActions -l t t/mojo t/mojolicious

0 comments on commit 0081a40

Please sign in to comment.