Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,12 @@ jobs:
- "5.24"
- "5.22"
- "5.20"
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
- "5.8"

env:
CIP_TAG: ${{ matrix.cip_tag }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Bootstrap CIP
run: |
Expand All @@ -54,7 +48,7 @@ jobs:
cip cache-key

- name: Cache CPAN modules
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.cip
key: ${{ runner.os }}-build-${{ steps.cache-key.outputs.key }}
Expand Down
65 changes: 0 additions & 65 deletions .github/workflows/macos.yml

This file was deleted.

70 changes: 0 additions & 70 deletions .github/workflows/windows.yml

This file was deleted.

1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Revision history for {{$dist->name}}

{{$NEXT}}
- Fixed incorrect capitalization in synopsis

0.05 2023-05-07 06:09:46 -0600
- Documentation improvements
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Log::Log4perl::Appender::TAP ![linux](https://github.com/uperl/Log-Log4perl-Appender-TAP/workflows/linux/badge.svg) ![macos](https://github.com/uperl/Log-Log4perl-Appender-TAP/workflows/macos/badge.svg) ![windows](https://github.com/uperl/Log-Log4perl-Appender-TAP/workflows/windows/badge.svg)
# Log::Log4perl::Appender::TAP ![linux](https://github.com/uperl/Log-Log4perl-Appender-TAP/workflows/linux/badge.svg)

Append to TAP output

Expand All @@ -8,7 +8,7 @@ Append to TAP output
use Test2::V0;
use Log::Log4perl;

LOG::Log4perl::init(\<<CONF);
Log::Log4perl::init(\<<CONF);
log4perl.rootLogger=ERROR, TAP
log4perl.appender.TAP=Log::Log4perl::Appender::TAP
log4perl.appender.TAP.method=diag
Expand Down Expand Up @@ -44,7 +44,7 @@ Graham Ollis <[email protected]>

# COPYRIGHT AND LICENSE

This software is copyright (c) 2017-2024 by Graham Ollis.
This software is copyright (c) 2017-2025 by Graham Ollis.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
4 changes: 1 addition & 3 deletions dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name = Log-Log4perl-Appender-TAP
author = Graham Ollis <[email protected]>
license = Perl_5
copyright_holder = Graham Ollis
copyright_year = 2017-2024
copyright_year = 2017-2025
version = 0.05

[@Author::Plicease]
Expand All @@ -12,8 +12,6 @@ test2_v0 = 1
github_user = uperl

workflow = linux
workflow = macos
workflow = windows

[RemovePrereqs]
remove = strict
Expand Down
2 changes: 1 addition & 1 deletion lib/Log/Log4perl/Appender/TAP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use parent qw( Log::Log4perl::Appender );
use Test2::V0;
use Log::Log4perl;

LOG::Log4perl::init(\<<CONF);
Log::Log4perl::init(\<<CONF);
log4perl.rootLogger=ERROR, TAP
log4perl.appender.TAP=Log::Log4perl::Appender::TAP
log4perl.appender.TAP.method=diag
Expand Down
Loading