forked from briandfoy/raku-PrettyDump
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
52 changed files
with
1,547 additions
and
1,546 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,28 @@ | ||
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: Install Dependencies | ||
run: zef install --/test --test-depends --deps-only . | ||
- 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 |
---|---|---|
@@ -1,29 +1,28 @@ | ||
name: macos | ||
name: MacOS | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
tags-ignore: | ||
- '*' | ||
pull_request: | ||
push: | ||
branches: | ||
- '*' | ||
tags-ignore: | ||
- '*' | ||
pull_request: | ||
|
||
jobs: | ||
raku: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: Raku/setup-raku@v1 | ||
- name: Platform check | ||
run: | | ||
uname -a | ||
- name: Raku version check | ||
run: | | ||
raku -V | ||
- name: Install dependencies | ||
run: | | ||
zef install --/test --test-depends --deps-only . | ||
zef install --/test App::Prove6 | ||
- name: Run tests | ||
run: | | ||
prove6 -l t | ||
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: Install Dependencies | ||
run: zef install --/test --test-depends --deps-only . | ||
- 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 |
---|---|---|
@@ -1,26 +1,28 @@ | ||
name: windows | ||
name: Windows | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
tags-ignore: | ||
- '*' | ||
pull_request: | ||
push: | ||
branches: | ||
- '*' | ||
tags-ignore: | ||
- '*' | ||
pull_request: | ||
|
||
jobs: | ||
raku: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: Raku/setup-raku@v1 | ||
- name: Raku version check | ||
run: | | ||
raku -V | ||
- name: Install dependencies | ||
run: | | ||
zef install --/test --test-depends --deps-only . | ||
zef install --/test App::Prove6 | ||
- name: Run tests | ||
run: | | ||
prove6 -l t | ||
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: Install Dependencies | ||
run: zef install --/test --test-depends --deps-only . | ||
- 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
*.swp | ||
.precomp | ||
.precomp/ | ||
/PrettyDump-* |
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
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 PrettyDump | ||
|
||
{{$NEXT}} | ||
- Initial version as a Raku Community Module |
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 |
---|---|---|
@@ -1,22 +1,26 @@ | ||
{ | ||
"authors" : [ | ||
"brian d foy" | ||
"auth": "zef:raku-community-modules", | ||
"authors": [ | ||
"brian d foy", | ||
"Raku Community" | ||
], | ||
"build-depends" : [ ], | ||
"depends" : [ ], | ||
"description" : "represent a Raku data structure in a human readable way", | ||
"license" : "Artistic-2.0", | ||
"name" : "PrettyDump", | ||
"perl" : "6.c", | ||
"provides" : { | ||
"PrettyDump" : "lib/PrettyDump.pm6" | ||
"build-depends": [ | ||
], | ||
"depends": [ | ||
], | ||
"description": "represent a Raku data structure in a human readable way", | ||
"license": "Artistic-2.0", | ||
"name": "PrettyDump", | ||
"perl": "6.c", | ||
"provides": { | ||
"PrettyDump": "lib/PrettyDump.rakumod" | ||
}, | ||
"resources" : [ ], | ||
"source-url" : "https://github.com/briandfoy/raku-PrettyDump.git", | ||
"tags" : [ ], | ||
"test-depends" : [ | ||
"Test", | ||
"Test::META" | ||
], | ||
"version" : "1.2.1" | ||
"resources": [ | ||
], | ||
"source-url": "https://github.com/raku-community-modules/PrettyDump.git", | ||
"tags": [ "PRINT", "DUMP", "DEBUGGING" | ||
], | ||
"test-depends": [ | ||
], | ||
"version": "1.2.2" | ||
} |
Oops, something went wrong.