-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI test for update as Raku community module
- Loading branch information
Showing
35 changed files
with
371 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Linux | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
tags-ignore: | ||
- '*' | ||
pull_request: | ||
|
||
jobs: | ||
raku: | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
raku-version: | ||
- 'latest' | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: Raku/setup-raku@v1 | ||
with: | ||
raku-version: ${{ matrix.raku-version }} | ||
- name: Run Special Tests | ||
run: raku run-tests -i |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: MacOS | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
tags-ignore: | ||
- '*' | ||
pull_request: | ||
|
||
jobs: | ||
raku: | ||
strategy: | ||
matrix: | ||
os: | ||
- macos-latest | ||
raku-version: | ||
- 'latest' | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: Raku/setup-raku@v1 | ||
with: | ||
raku-version: ${{ matrix.raku-version }} | ||
- name: Run Special Tests | ||
run: raku run-tests -i |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Windows | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
tags-ignore: | ||
- '*' | ||
pull_request: | ||
|
||
jobs: | ||
raku: | ||
strategy: | ||
matrix: | ||
os: | ||
- windows-latest | ||
raku-version: | ||
- 'latest' | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: Raku/setup-raku@v1 | ||
with: | ||
raku-version: ${{ matrix.raku-version }} | ||
- name: Run Special Tests | ||
run: raku run-tests -i |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Revision history for Test::Stream | ||
|
||
{{$NEXT}} | ||
- Initial version as a Raku Community Module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,34 @@ | ||
{ | ||
"name": "Test::Stream", | ||
"auth": "zef:raku-community-modules", | ||
"author": "Dave Rolsky", | ||
"build-depends": [ | ||
], | ||
"depends": [ | ||
], | ||
"description": "Stream test events", | ||
"version": "0.0.3", | ||
"license": "Artistic-2.0", | ||
"name": "Test::Predicates", | ||
"perl": "6.*", | ||
"auth": "zef:raku-community-modules", | ||
"depends": [], | ||
"provides": { | ||
"Test::Predicates": "lib/Test/Predicates.pm6", | ||
"Test::Predicator": "lib/Test/Predicator.pm6", | ||
"Test::Stream::Diagnostic": "lib/Test/Stream/Diagnostic.pm6", | ||
"Test::Stream::Event": "lib/Test/Stream/Event.pm6", | ||
"Test::Stream::EventSource": "lib/Test/Stream/EventSource.pm6", | ||
"Test::Stream::Formatter::TAP12": "lib/Test/Stream/Formatter/TAP12.pm6", | ||
"Test::Stream::Hub": "lib/Test/Stream/Hub.pm6", | ||
"Test::Stream::Listener": "lib/Test/Stream/Listener.pm6", | ||
"Test::Stream::Recorder": "lib/Test/Stream/Recorder.pm6", | ||
"Test::Stream::Suite": "lib/Test/Stream/Suite.pm6", | ||
"Test::Stream::Types": "lib/Test/Stream/Types.pm6", | ||
"Test::Stream::Util": "lib/Test/Stream/Util.pm6" | ||
"Test::Predicates": "lib/Test/Predicates.rakumod", | ||
"Test::Predicator": "lib/Test/Predicator.rakumod", | ||
"Test::Stream::Diagnostic": "lib/Test/Stream/Diagnostic.rakumod", | ||
"Test::Stream::Event": "lib/Test/Stream/Event.rakumod", | ||
"Test::Stream::EventSource": "lib/Test/Stream/EventSource.rakumod", | ||
"Test::Stream::Formatter::TAP12": "lib/Test/Stream/Formatter/TAP12.rakumod", | ||
"Test::Stream::Hub": "lib/Test/Stream/Hub.rakumod", | ||
"Test::Stream::Listener": "lib/Test/Stream/Listener.rakumod", | ||
"Test::Stream::Recorder": "lib/Test/Stream/Recorder.rakumod", | ||
"Test::Stream::Suite": "lib/Test/Stream/Suite.rakumod", | ||
"Test::Stream::Types": "lib/Test/Stream/Types.rakumod", | ||
"Test::Stream::Util": "lib/Test/Stream/Util.rakumod" | ||
}, | ||
"license": "Artistic-2.0", | ||
"resources": [ | ||
], | ||
"source-url": "https://github.com/raku-community-modules/Test-Stream.git", | ||
"author": "Dave Rolsky <autarch@urth.org>" | ||
"tags": [ | ||
], | ||
"test-depends": [ | ||
], | ||
"version": "0.0.3" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,33 @@ | ||
# Test::Stream [![Tests on source](https://github.com/raku-community-modules/Test-Stream/actions/workflows/test.yaml/badge.svg)](https://github.com/raku-community-modules/Test-Stream/actions/workflows/test.yaml) | ||
[![Actions Status](https://github.com/raku-community-modules/Test-Stream/actions/workflows/linux.yml/badge.svg)](https://github.com/raku-community-modules/Test-Stream/actions) [![Actions Status](https://github.com/raku-community-modules/Test-Stream/actions/workflows/macos.yml/badge.svg)](https://github.com/raku-community-modules/Test-Stream/actions) [![Actions Status](https://github.com/raku-community-modules/Test-Stream/actions/workflows/windows.yml/badge.svg)](https://github.com/raku-community-modules/Test-Stream/actions) | ||
|
||
This is a prototype of an event-based test framework. The goal is to produce | ||
an underlying set of modules that can be shared by all Test modules in the | ||
Raku ecosystem. Building this on top of an abstract test event system makes | ||
integrating different modules much easier. It also makes testing your test | ||
modules *much* easier, and allows for output formats besides TAP. | ||
NAME | ||
==== | ||
|
||
Please note that the namespaces are likely to change in the future, so please | ||
do not rely on this code yet. | ||
Test::Stream - Stream test events | ||
|
||
# LICENSE | ||
SYNOPSIS | ||
======== | ||
|
||
```raku | ||
use Test::Stream; | ||
``` | ||
|
||
DESCRIPTION | ||
=========== | ||
|
||
This is a prototype of an event-based test framework. The goal is to produce an underlying set of modules that can be shared by all Test modules in the Raku ecosystem. Building this on top of an abstract test event system makes integrating different modules much easier. It also makes testing your test modules *much* easier, and allows for output formats besides TAP. | ||
|
||
AUTHOR | ||
====== | ||
|
||
Dave Rolsky | ||
|
||
COPYRIGHT AND LICENSE | ||
===================== | ||
|
||
Copyright 2016 Dave Rolsky | ||
|
||
Copyright 2020 - 2024 Raku Community | ||
|
||
This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0. | ||
|
||
This module is licensed under the [Artistic License](LICENSE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name = Test::Stream | ||
|
||
[ReadmeFromPod] | ||
filename = doc/Test-Stream.rakudoc | ||
|
||
[UploadToZef] | ||
|
||
[Badges] | ||
provider = github-actions/linux.yml | ||
provider = github-actions/macos.yml | ||
provider = github-actions/windows.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
=begin pod | ||
|
||
=head1 NAME | ||
|
||
Test::Stream - Stream test events | ||
|
||
=head1 SYNOPSIS | ||
|
||
=begin code :lang<raku> | ||
|
||
use Test::Stream; | ||
|
||
=end code | ||
|
||
=head1 DESCRIPTION | ||
|
||
This is a prototype of an event-based test framework. The goal is to produce | ||
an underlying set of modules that can be shared by all Test modules in the | ||
Raku ecosystem. Building this on top of an abstract test event system makes | ||
integrating different modules much easier. It also makes testing your test | ||
modules *much* easier, and allows for output formats besides TAP. | ||
|
||
=head1 AUTHOR | ||
|
||
Dave Rolsky | ||
|
||
=head1 COPYRIGHT AND LICENSE | ||
|
||
Copyright 2016 Dave Rolsky | ||
|
||
Copyright 2020 - 2024 Raku Community | ||
|
||
This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0. | ||
|
||
=end pod | ||
|
||
# vim: expandtab shiftwidth=4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.