Skip to content

Commit 8b74f57

Browse files
committed
Move to GH Actions
1 parent f7f62ba commit 8b74f57

File tree

6 files changed

+29
-14
lines changed

6 files changed

+29
-14
lines changed

.github/workflows/main.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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 .

.travis.yml

-10
This file was deleted.

Changes

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
v0.0.9 Sat 13 Feb 10:26:07 GMT 2021
2+
* Move to GH actions
13
v0.0.8 Tue 29 Sep 12:48:43 BST 2020
24
* Renaming
35
v0.0.7 Sun 20 Jan 13:15:59 GMT 2019

META6.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Chronic",
3-
"version": "0.0.8",
3+
"version": "0.0.9",
44
"auth": "github:jonathanstowe",
55
"api": "1.0",
66
"source-url": "https://github.com/jonathanstowe/Chronic.git",

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Scheduling thingy for Raku
44

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)
66

77
## Synopsis
88

@@ -64,7 +64,7 @@ Chronic.supply.wait;
6464

6565
This module provides a low-level scheduling mechanism, that be used to
6666
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.
6868

6969
There is a class method ```every``` that takes a schedule specification
7070
and returns a ```Supply``` that will emit a value (a ```DateTime```) on

lib/Chronic.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ The day of the week (starting on Monday) in the range 1 .. 7
190190
191191
=end pod
192192

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> {
194194
class Description {
195195

196196
sub expand-expression(Str $exp, Range $r --> Array[Int] ) {

0 commit comments

Comments
 (0)