File tree 6 files changed +29
-14
lines changed
6 files changed +29
-14
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ test :
11
+ runs-on : ubuntu-latest
12
+
13
+ container :
14
+ image : rakudo-star:latest
15
+
16
+ steps :
17
+ - uses : actions/checkout@v2
18
+
19
+ - name : Raku version
20
+ run : raku -v
21
+
22
+ - name : Run tests
23
+ run : zef test -v --debug .
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ v0.0.9 Sat 13 Feb 10:26:07 GMT 2021
2
+ * Move to GH actions
1
3
v0.0.8 Tue 29 Sep 12:48:43 BST 2020
2
4
* Renaming
3
5
v0.0.7 Sun 20 Jan 13:15:59 GMT 2019
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " Chronic" ,
3
- "version" : " 0.0.8 " ,
3
+ "version" : " 0.0.9 " ,
4
4
"auth" : " github:jonathanstowe" ,
5
5
"api" : " 1.0" ,
6
6
"source-url" : " https://github.com/jonathanstowe/Chronic.git" ,
Original file line number Diff line number Diff line change 2
2
3
3
Scheduling thingy for Raku
4
4
5
- [ ![ Build Status] ( https://travis-ci.org /jonathanstowe/Chronic.svg?branch=master )] ( https://travis-ci.org/jonathanstowe/Chronic )
5
+ ![ Build Status] ( https://github.com /jonathanstowe/Chronic/workflows/CI/badge.svg )
6
6
7
7
## Synopsis
8
8
@@ -64,7 +64,7 @@ Chronic.supply.wait;
64
64
65
65
This module provides a low-level scheduling mechanism, that be used to
66
66
create cron-like schedules, the specifications can be provided as cron
67
- expression strings, lists of integer values or [ Junctions] ( https://docs.perl6 .org/type/Junction ) of values.
67
+ expression strings, lists of integer values or [ Junctions] ( https://docs.raku .org/type/Junction ) of values.
68
68
69
69
There is a class method ``` every ``` that takes a schedule specification
70
70
and returns a ``` Supply ``` that will emit a value (a ``` DateTime ``` ) on
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ The day of the week (starting on Monday) in the range 1 .. 7
190
190
191
191
= end pod
192
192
193
- class Chronic : ver<0.0.8 >: auth<github:jonathanstowe >: api<1.0 > {
193
+ class Chronic : ver<0.0.9 >: auth<github:jonathanstowe >: api<1.0 > {
194
194
class Description {
195
195
196
196
sub expand-expression (Str $ exp , Range $ r --> Array [Int ] ) {
You can’t perform that action at this time.
0 commit comments