Skip to content

Commit

Permalink
CI check for first zef release
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Apr 23, 2024
1 parent f12aefd commit 3926abf
Show file tree
Hide file tree
Showing 14 changed files with 1,448 additions and 573 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: test

on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:

jobs:
raku:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-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 App::Prove6
run: zef install --/test App::Prove6
- name: Run Tests
run: prove6 -I. t
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/lib/.precomp
.precomp
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Revision history for Algorithm-Diff

{{$NEXT}}
- First version in the zef ecosystem
- Renamed diff.pl to bin/diff.raku so that it will be installed
7 changes: 0 additions & 7 deletions MANIFEST

This file was deleted.

37 changes: 21 additions & 16 deletions META6.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
{
"perl" : "6.*",
"name" : "Algorithm::Diff",
"version" : "0.0.1",
"description" : "Contains several interfaces for which computing the differences between two lists.",
"build-depends" : [ ],
"test-depends" : [
"Test"
],
"depends" : [ ],
"provides" : {
"Algorithm::Diff" : "lib/Algorithm/Diff.pm"
},
"source-type" : "git",
"source-url" : "git://github.com/Takadonet/Algorithm--Diff.git",
"tags" : ["CPAN5"]
"auth": "zef:raku-community-modules",
"build-depends": [
],
"depends": [
],
"description": "Compute `intelligent' differences between two files / lists",
"license": "NOASSERTION",
"name": "Algorithm::Diff",
"perl": "6.*",
"provides": {
"Algorithm::Diff": "lib/Algorithm/Diff.rakumod"
},
"resources": [
],
"source-url": "https://github.com/raku-community-modules/Algorithm-Diff.git",
"tags": [
"CPAN5"
],
"test-depends": [
],
"version": "0.0.2"
}

86 changes: 0 additions & 86 deletions README

This file was deleted.

Loading

0 comments on commit 3926abf

Please sign in to comment.