Skip to content

Commit 6a81d19

Browse files
committed
CI test prior to release
1 parent 6c9d37c commit 6a81d19

29 files changed

+317
-125
lines changed

.appveyor.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

.appveyor_clear_cache.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/linux.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Linux
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
tags-ignore:
8+
- '*'
9+
pull_request:
10+
11+
jobs:
12+
raku:
13+
strategy:
14+
matrix:
15+
os:
16+
- ubuntu-latest
17+
raku-version:
18+
- 'latest'
19+
runs-on: ${{ matrix.os }}
20+
steps:
21+
- uses: actions/checkout@v3
22+
- uses: Raku/setup-raku@v1
23+
with:
24+
raku-version: ${{ matrix.raku-version }}
25+
- name: Run Special Tests
26+
run: raku run-tests -i

.github/workflows/macos.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: MacOS
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
tags-ignore:
8+
- '*'
9+
pull_request:
10+
11+
jobs:
12+
raku:
13+
strategy:
14+
matrix:
15+
os:
16+
- macos-latest
17+
raku-version:
18+
- 'latest'
19+
runs-on: ${{ matrix.os }}
20+
steps:
21+
- uses: actions/checkout@v3
22+
- uses: Raku/setup-raku@v1
23+
with:
24+
raku-version: ${{ matrix.raku-version }}
25+
- name: Run Special Tests
26+
run: raku run-tests -i

.github/workflows/windows.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Windows
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
tags-ignore:
8+
- '*'
9+
pull_request:
10+
11+
jobs:
12+
raku:
13+
strategy:
14+
matrix:
15+
os:
16+
- windows-latest
17+
raku-version:
18+
- 'latest'
19+
runs-on: ${{ matrix.os }}
20+
steps:
21+
- uses: actions/checkout@v3
22+
- uses: Raku/setup-raku@v1
23+
with:
24+
raku-version: ${{ matrix.raku-version }}
25+
- name: Run Special Tests
26+
run: raku run-tests -i

.gitignore

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/Template-Mustache-[0-9]*
2-
t/spec-partials
3-
Makefile
4-
blib
51
.precomp/
6-
t/.precomp/
7-
lib/.precomp/
2+
/Template-Mustache-*
3+
*.rakucov

.travis.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

Changes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Revision history for Template-Mustache
22

33
{{$NEXT}}
4+
- First version as a Raku Community Module
5+
- Use modern test file extensions
6+
- Add coverage tests (still incomplete)
7+
- Add CI badge for each OS
48

59
1.2.3 2021-03-19T02:00:29-04:00
610
- Fix {{.}} lookup in scalar sections

META6.json

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"api": "1.2.0",
3-
"auth": "github:softmoth",
3+
"auth": "zef:raku-community-modules",
44
"authors": [
55
"Tim Smith",
6-
"Richard Hainsworth"
6+
"Tim Siegel"
77
],
88
"build-depends": [
99
],
@@ -12,18 +12,18 @@
1212
"description": "A logic-free, cross-language templating format",
1313
"license": "Artistic-2.0",
1414
"name": "Template::Mustache",
15-
"perl": "6.d",
16-
"production": 1,
15+
"production": true,
1716
"provides": {
1817
"Template::Mustache": "lib/Template/Mustache.rakumod"
1918
},
2019
"raku": "6.d",
2120
"resources": [
2221
],
23-
"source-url": "https://github.com/softmoth/raku-Template-Mustache.git",
22+
"source-url": "https://github.com/raku-community-modules/Template-Mustache.git",
2423
"support": {
25-
"bugtracker": "https://github.com/softmoth/raku-Template-Mustache/issues",
26-
"source": "https://github.com/softmoth/raku-Template-Mustache.git"
24+
"bugtracker": "https://github.com/raku-community-modules/Template-Mustache/issues",
25+
"email": "[email protected]",
26+
"source": "https://github.com/raku-community-modules/Template-Mustache.git"
2727
},
2828
"tags": [
2929
"mustache",
@@ -32,9 +32,6 @@
3232
"text"
3333
],
3434
"test-depends": [
35-
"JSON::Fast",
36-
"Test",
37-
"Test::META"
3835
],
39-
"version": "1.2.3"
36+
"version": "1.2.4"
4037
}

README.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://travis-ci.org/softmoth/raku-Template-Mustache.svg?branch=master)](https://travis-ci.org/softmoth/raku-Template-Mustache) [![Windows Status](https://ci.appveyor.com/api/projects/status/github/softmoth/raku-Template-Mustache?branch=master&passingText=Windows%20-%20OK&failingText=Windows%20-%20FAIL&pendingText=Windows%20-%20pending&svg=true)](https://ci.appveyor.com/project/softmoth/raku-Template-Mustache/branch/master)
1+
[![Actions Status](https://github.com/raku-community-modules/Template-Mustache/actions/workflows/linux.yml/badge.svg)](https://github.com/raku-community-modules/Template-Mustache/actions) [![Actions Status](https://github.com/raku-community-modules/Template-Mustache/actions/workflows/macos.yml/badge.svg)](https://github.com/raku-community-modules/Template-Mustache/actions) [![Actions Status](https://github.com/raku-community-modules/Template-Mustache/actions/workflows/windows.yml/badge.svg)](https://github.com/raku-community-modules/Template-Mustache/actions)
22

33
Raku implementation of Mustache templates, [http://mustache.github.io/](http://mustache.github.io/).
44

@@ -166,8 +166,23 @@ TODO
166166

167167
* pragmas (FILTERS?)
168168

169-
License
169+
AUTHORS
170170
=======
171171

172-
[Artistic License 2.0](http://www.perlfoundation.org/artistic_license_2_0)
172+
* Tim Smith
173+
174+
* Tim Siegel
175+
176+
Source can be located at: https://github.com/raku-community-modules/Template-Mustache . Comments and Pull Requests are welcome.
177+
178+
COPYRIGHT AND LICENSE
179+
=====================
180+
181+
Copyright 2014 - 2020 Tim Siegel
182+
183+
Copyright 2021 - 2022 Tim Smith
184+
185+
Copyright 2025 Raku Community
186+
187+
This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.
173188

0 commit comments

Comments
 (0)