-
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.
Merge pull request #43 from titsuki/use-github-actions
Use github actions instead of travis ci
- Loading branch information
Showing
4 changed files
with
70 additions
and
33 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,33 @@ | ||
name: test | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
tags-ignore: | ||
- '*' | ||
pull_request: | ||
|
||
jobs: | ||
raku: | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
- macOS-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 Dependencies | ||
run: zef install --/test --test-depends --deps-only . | ||
- name: Install App::Prove6 | ||
run: zef install --/test App::Prove6 | ||
- name: Build gnuplot | ||
run: zef build . | ||
- name: Run Tests | ||
run: prove6 -l 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,40 +1,44 @@ | ||
{ | ||
"author" : "cpan:TITSUKI", | ||
"authors" : [ | ||
"author": "cpan:TITSUKI", | ||
"authors": [ | ||
"Itsuki Toyota" | ||
], | ||
"build-depends" : [ | ||
"build-depends": [ | ||
"zef", | ||
"Distribution::Builder::MakeFromJSON", | ||
"Chart::Gnuplot::CustomBuilder" | ||
], | ||
"builder" : "Chart::Gnuplot::CustomBuilder", | ||
"depends" : [ ], | ||
"description" : "A Raku bindings for gnuplot", | ||
"license" : "GPL-3.0", | ||
"name" : "Chart::Gnuplot", | ||
"perl" : "6.c", | ||
"provides" : { | ||
"Chart::Gnuplot" : "lib/Chart/Gnuplot.pm6", | ||
"Chart::Gnuplot::Arrow" : "lib/Chart/Gnuplot/Arrow.pm6", | ||
"Chart::Gnuplot::Border" : "lib/Chart/Gnuplot/Border.pm6", | ||
"Chart::Gnuplot::CustomBuilder" : "lib/Chart/Gnuplot/CustomBuilder.pm6", | ||
"Chart::Gnuplot::Grid" : "lib/Chart/Gnuplot/Grid.pm6", | ||
"Chart::Gnuplot::Label" : "lib/Chart/Gnuplot/Label.pm6", | ||
"Chart::Gnuplot::Legend" : "lib/Chart/Gnuplot/Legend.pm6", | ||
"Chart::Gnuplot::Object" : "lib/Chart/Gnuplot/Object.pm6", | ||
"Chart::Gnuplot::Output" : "lib/Chart/Gnuplot/Output.pm6", | ||
"Chart::Gnuplot::Range" : "lib/Chart/Gnuplot/Range.pm6", | ||
"Chart::Gnuplot::Subset" : "lib/Chart/Gnuplot/Subset.pm6", | ||
"Chart::Gnuplot::Terminal" : "lib/Chart/Gnuplot/Terminal.pm6", | ||
"Chart::Gnuplot::Tics" : "lib/Chart/Gnuplot/Tics.pm6", | ||
"Chart::Gnuplot::Timestamp" : "lib/Chart/Gnuplot/Timestamp.pm6", | ||
"Chart::Gnuplot::Title" : "lib/Chart/Gnuplot/Title.pm6", | ||
"Chart::Gnuplot::Util" : "lib/Chart/Gnuplot/Util.pm6" | ||
"builder": "Chart::Gnuplot::CustomBuilder", | ||
"depends": [ | ||
], | ||
"description": "A Raku bindings for gnuplot", | ||
"license": "GPL-3.0", | ||
"name": "Chart::Gnuplot", | ||
"perl": "6.c", | ||
"provides": { | ||
"Chart::Gnuplot": "lib/Chart/Gnuplot.pm6", | ||
"Chart::Gnuplot::Arrow": "lib/Chart/Gnuplot/Arrow.pm6", | ||
"Chart::Gnuplot::Border": "lib/Chart/Gnuplot/Border.pm6", | ||
"Chart::Gnuplot::CustomBuilder": "lib/Chart/Gnuplot/CustomBuilder.pm6", | ||
"Chart::Gnuplot::Grid": "lib/Chart/Gnuplot/Grid.pm6", | ||
"Chart::Gnuplot::Label": "lib/Chart/Gnuplot/Label.pm6", | ||
"Chart::Gnuplot::Legend": "lib/Chart/Gnuplot/Legend.pm6", | ||
"Chart::Gnuplot::Object": "lib/Chart/Gnuplot/Object.pm6", | ||
"Chart::Gnuplot::Output": "lib/Chart/Gnuplot/Output.pm6", | ||
"Chart::Gnuplot::Range": "lib/Chart/Gnuplot/Range.pm6", | ||
"Chart::Gnuplot::Subset": "lib/Chart/Gnuplot/Subset.pm6", | ||
"Chart::Gnuplot::Terminal": "lib/Chart/Gnuplot/Terminal.pm6", | ||
"Chart::Gnuplot::Tics": "lib/Chart/Gnuplot/Tics.pm6", | ||
"Chart::Gnuplot::Timestamp": "lib/Chart/Gnuplot/Timestamp.pm6", | ||
"Chart::Gnuplot::Title": "lib/Chart/Gnuplot/Title.pm6", | ||
"Chart::Gnuplot::Util": "lib/Chart/Gnuplot/Util.pm6" | ||
}, | ||
"resources" : [ ], | ||
"source-url" : "git://github.com/titsuki/raku-Chart-Gnuplot.git", | ||
"tags" : [ ], | ||
"test-depends" : [ ], | ||
"version" : "0.0.19" | ||
"resources": [ | ||
], | ||
"source-url": "git://github.com/titsuki/raku-Chart-Gnuplot.git", | ||
"tags": [ | ||
], | ||
"test-depends": [ | ||
], | ||
"version": "0.0.19" | ||
} |
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