Skip to content

Commit

Permalink
Initial adaptation to Raku Community Modules
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Aug 7, 2024
1 parent 45067c7 commit 1eb8485
Show file tree
Hide file tree
Showing 28 changed files with 764 additions and 582 deletions.
68 changes: 0 additions & 68 deletions .appveyor.yml

This file was deleted.

1 change: 0 additions & 1 deletion .appveyor_clear_cache.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .gitattributes

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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: Run Special Tests
run: raku run-tests -i
26 changes: 26 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: MacOS

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

jobs:
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: Run Special Tests
run: raku run-tests -i
26 changes: 26 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Windows

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

jobs:
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: 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 @@
lib/.precomp
CONTRIBUTORS~
.precomp/
/Chemistry-Elements-*
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Revision history for Chemistry::Elements

{{$NEXT}}
- Initial version
52 changes: 31 additions & 21 deletions META6.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,33 @@
{
"authors": [
"brian d foy"
],
"depends": [],
"description": "Raku extension for working with the Periodic Table of Elements",
"name": "Chemistry::Elements",
"perl": "6.c",
"license": "Artistic-2.0",
"provides": {
"Chemistry::Elements": "lib/Chemistry/Elements.pm6"
},
"support": {
"source": "https://github.com/briandfoy/raku-chemistry-elements.git"
},
"test-depends": [
"Test",
"Test::META"
],
"version": "0.001003",
"tags": [ "chemistry", "Z", "atomic number" ],
"source-url" : "https://github.com/briandfoy/raku-chemistry-elements.git"
"auth": "zef:raku-community-modules",
"authors": [
"brian d foy",
"Raku Community"
],
"build-depends": [
],
"depends": [
],
"description": "do things with the Periodic Table",
"license": "Artistic-2.0",
"name": "Chemistry::Elements",
"perl": "6.c",
"provides": {
"Chemistry::Elements": "lib/Chemistry/Elements.rakumod"
},
"resources": [
],
"source-url": "https://github.com/raku-community-modules/Chemistry-Elements.git",
"support": {
"source": "https://github.com/raku-community-modules/Chemistry-Elements"
},
"tags": [
"chemistry",
"Z",
"atomic number"
],
"test-depends": [
"Test::META"
],
"version": "0.001004"
}
14 changes: 0 additions & 14 deletions Makefile

This file was deleted.

Loading

0 comments on commit 1eb8485

Please sign in to comment.