forked from ajs/perl6-Math-Sequences
-
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 in preparation for a Raku Community release
- Loading branch information
Showing
34 changed files
with
791 additions
and
273 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,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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
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: 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
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: 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Revision history for Math::Sequences | ||
|
||
{{$NEXT}} | ||
- Initial version as 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,18 +1,32 @@ | ||
{ | ||
"perl": "6.c", | ||
"name" : "Math::Sequences", | ||
"version" : "0.0.6", | ||
"description" : "Various mathematical sequences of moderate use", | ||
"authors" : [ "Aaron Sherman", "JJ Merelo" ], | ||
"provides" : { | ||
"Math::Sequences::Integer" : "lib/Math/Sequences/Integer.pm6", | ||
"Math::Sequences::Real" : "lib/Math/Sequences/Real.pm6", | ||
"Math::Sequences::Numberphile" : "lib/Math/Sequences/Numberphile.pm6", | ||
"Math::Util::Roman" : "lib/Math/Util/Roman.pm6", | ||
"Math::Util::SpellNumbers" : "lib/Math/Util/SpellNumbers.pm6" | ||
|
||
}, | ||
"depends" : [ "Test::META", "Lingua::EN::Numbers" ], | ||
"resources" : [ ], | ||
"source-url" : "https://github.com/ajs/perl6-Math-Sequences.git" | ||
"auth": "zef:raku-community-modules", | ||
"authors": [ | ||
"Aaron Sherman", | ||
"JJ Merelo" | ||
], | ||
"build-depends": [ | ||
], | ||
"depends": [ | ||
"Lingua::EN::Numbers" | ||
], | ||
"description": "Various mathematical sequences of moderate use", | ||
"license": "Artistic-2.0", | ||
"name": "Math::Sequences", | ||
"perl": "6.c", | ||
"provides": { | ||
"Math::Sequences": "lib/Math/Sequences.rakumod", | ||
"Math::Sequences::Integer": "lib/Math/Sequences/Integer.rakumod", | ||
"Math::Sequences::Numberphile": "lib/Math/Sequences/Numberphile.rakumod", | ||
"Math::Sequences::Real": "lib/Math/Sequences/Real.rakumod", | ||
"Math::Util::Roman": "lib/Math/Util/Roman.rakumod", | ||
"Math::Util::SpellNumbers": "lib/Math/Util/SpellNumbers.rakumod" | ||
}, | ||
"resources": [ | ||
], | ||
"source-url": "https://github.com/raku-community-modules/Math-Sequences.git", | ||
"tags": [ | ||
], | ||
"test-depends": [ | ||
], | ||
"version": "0.0.6" | ||
} |
Oops, something went wrong.