Skip to content

Commit

Permalink
CI check for 1.2.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Sep 20, 2024
1 parent 5fe720e commit d270f45
Show file tree
Hide file tree
Showing 52 changed files with 1,547 additions and 1,546 deletions.
64 changes: 0 additions & 64 deletions .appveyor.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/author.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Linux

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

jobs:
raku:
strategy:
matrix:
os:
- ubuntu-latest
raku-version:
- 'latest'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: Raku/setup-raku@v1
with:
raku-version: ${{ matrix.raku-version }}
- name: Install Dependencies
run: zef install --/test --test-depends --deps-only .
- name: Run Special Tests
run: raku run-tests -i
49 changes: 24 additions & 25 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
name: macos
name: MacOS

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

jobs:
raku:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: Raku/setup-raku@v1
- name: Platform check
run: |
uname -a
- name: Raku version check
run: |
raku -V
- name: Install dependencies
run: |
zef install --/test --test-depends --deps-only .
zef install --/test App::Prove6
- name: Run tests
run: |
prove6 -l t
raku:
strategy:
matrix:
os:
- macos-latest
raku-version:
- 'latest'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: Raku/setup-raku@v1
with:
raku-version: ${{ matrix.raku-version }}
- name: Install Dependencies
run: zef install --/test --test-depends --deps-only .
- name: Run Special Tests
run: raku run-tests -i
29 changes: 0 additions & 29 deletions .github/workflows/ubuntu.yml

This file was deleted.

46 changes: 24 additions & 22 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
name: windows
name: Windows

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

jobs:
raku:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: Raku/setup-raku@v1
- name: Raku version check
run: |
raku -V
- name: Install dependencies
run: |
zef install --/test --test-depends --deps-only .
zef install --/test App::Prove6
- name: Run tests
run: |
prove6 -l t
raku:
strategy:
matrix:
os:
- windows-latest
raku-version:
- 'latest'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: Raku/setup-raku@v1
with:
raku-version: ${{ matrix.raku-version }}
- name: Install Dependencies
run: zef install --/test --test-depends --deps-only .
- name: Run Special Tests
run: raku run-tests -i
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
*.swp
.precomp
.precomp/
/PrettyDump-*
7 changes: 2 additions & 5 deletions CONTRIBUTING
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# Contributing to raku-PrettyDump
# Contributing to PrettyDump

## Level 1 - Inquiry

* create an issue to tell me what you're thinking about. We'll go from there.
* if you want a particular feature, ensure it fits in the goals of this module.
* if I don't get back to you within a week, bug me in email *brian.d.foy@gmail.com*. Sometimes the GitHub notifications don't reach me.

## Level 2 - Bug report

Expand All @@ -21,9 +20,7 @@
* update the docs
* create a test
* check that the tests pass locally (your PR will trigger the GitHub Actions too).
* if I have to handle lots of that, it goes toward the bottom of my to-do list
* if you can't do all that, no big whoop, but I might not be able to immediately set aside the time to follow up

## Level 4 - Fork

* if you want something much different than what this module does, use my code as a basis. Change it however you like according to the very liberal license.
* if you want something much different than what this module does, use this code as a basis. Change it however you like according to the very liberal license.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Revision history for PrettyDump

{{$NEXT}}
- Initial version as a Raku Community Module
7 changes: 0 additions & 7 deletions Changes.md

This file was deleted.

40 changes: 22 additions & 18 deletions META6.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
{
"authors" : [
"brian d foy"
"auth": "zef:raku-community-modules",
"authors": [
"brian d foy",
"Raku Community"
],
"build-depends" : [ ],
"depends" : [ ],
"description" : "represent a Raku data structure in a human readable way",
"license" : "Artistic-2.0",
"name" : "PrettyDump",
"perl" : "6.c",
"provides" : {
"PrettyDump" : "lib/PrettyDump.pm6"
"build-depends": [
],
"depends": [
],
"description": "represent a Raku data structure in a human readable way",
"license": "Artistic-2.0",
"name": "PrettyDump",
"perl": "6.c",
"provides": {
"PrettyDump": "lib/PrettyDump.rakumod"
},
"resources" : [ ],
"source-url" : "https://github.com/briandfoy/raku-PrettyDump.git",
"tags" : [ ],
"test-depends" : [
"Test",
"Test::META"
],
"version" : "1.2.1"
"resources": [
],
"source-url": "https://github.com/raku-community-modules/PrettyDump.git",
"tags": [ "PRINT", "DUMP", "DEBUGGING"
],
"test-depends": [
],
"version": "1.2.2"
}
3 changes: 0 additions & 3 deletions Makefile

This file was deleted.

Loading

0 comments on commit d270f45

Please sign in to comment.