Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/utgwkk/test2-plugin-github-actions-annotatewarnings
https://github.com/utgwkk/test2-plugin-github-actions-annotatewarnings
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/utgwkk/test2-plugin-github-actions-annotatewarnings
- Owner: utgwkk
- License: other
- Created: 2020-06-19T08:10:11.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-19T10:26:15.000Z (over 4 years ago)
- Last Synced: 2024-04-20T08:59:58.624Z (7 months ago)
- Language: Perl
- Size: 20.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
# NAME
Test2::Plugin::GitHub::Actions::AnnotateWarnings - Annotate warnings with GitHub Actions workflow command
# SYNOPSIS
Just use this module and run tests. Note that this plugin is enabled only in a GitHub Actions workflow.
use Test2::Plugin::GitHub::Actions::AnnotateWarnings;
You can also specify a condition whether to annotate a warning or not.
use Test2::Plugin::GitHub::Actions::AnnotateWarnings ignore_if => sub {
my ($message, $file, $line) = @_;
return $message =~ /ignore/;
};# DESCRIPTION
This plugin provides annotations to the line of warnings for GitHub Actions workflow.
# LICENSE
Copyright (C) utgwkk.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.# AUTHOR
utgwkk