-
Notifications
You must be signed in to change notification settings - Fork 9
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
14 changed files
with
1,448 additions
and
573 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,30 @@ | ||
name: test | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
tags-ignore: | ||
- '*' | ||
pull_request: | ||
|
||
jobs: | ||
raku: | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
- macos-latest | ||
- windows-latest | ||
raku-version: | ||
- 'latest' | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: Raku/setup-raku@v1 | ||
with: | ||
raku-version: ${{ matrix.raku-version }} | ||
- name: Install App::Prove6 | ||
run: zef install --/test App::Prove6 | ||
- name: Run Tests | ||
run: prove6 -I. t |
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 +1 @@ | ||
/lib/.precomp | ||
.precomp |
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,5 @@ | ||
Revision history for Algorithm-Diff | ||
|
||
{{$NEXT}} | ||
- First version in the zef ecosystem | ||
- Renamed diff.pl to bin/diff.raku so that it will be installed |
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,18 +1,23 @@ | ||
{ | ||
"perl" : "6.*", | ||
"name" : "Algorithm::Diff", | ||
"version" : "0.0.1", | ||
"description" : "Contains several interfaces for which computing the differences between two lists.", | ||
"build-depends" : [ ], | ||
"test-depends" : [ | ||
"Test" | ||
], | ||
"depends" : [ ], | ||
"provides" : { | ||
"Algorithm::Diff" : "lib/Algorithm/Diff.pm" | ||
}, | ||
"source-type" : "git", | ||
"source-url" : "git://github.com/Takadonet/Algorithm--Diff.git", | ||
"tags" : ["CPAN5"] | ||
"auth": "zef:raku-community-modules", | ||
"build-depends": [ | ||
], | ||
"depends": [ | ||
], | ||
"description": "Compute `intelligent' differences between two files / lists", | ||
"license": "NOASSERTION", | ||
"name": "Algorithm::Diff", | ||
"perl": "6.*", | ||
"provides": { | ||
"Algorithm::Diff": "lib/Algorithm/Diff.rakumod" | ||
}, | ||
"resources": [ | ||
], | ||
"source-url": "https://github.com/raku-community-modules/Algorithm-Diff.git", | ||
"tags": [ | ||
"CPAN5" | ||
], | ||
"test-depends": [ | ||
], | ||
"version": "0.0.2" | ||
} | ||
|
Oops, something went wrong.