Skip to content

Commit

Permalink
CI test for update as Raku community module
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Nov 30, 2024
1 parent 1f51e7a commit 68bc1c4
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 13 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/test.yml → .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: test
name: Linux

on:
push:
Expand All @@ -11,21 +11,18 @@ on:
jobs:
raku:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
raku-version:
- 'latest'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- 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 Tests
run: raku run-tests
- name: Run Special Tests
run: raku run-tests -i
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Revision history for Spreadsheet-XLSX

{{$NEXT}}
- Initial version
- Initial version as a Raku Community module
9 changes: 6 additions & 3 deletions META6.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"auth": "zef:raku-community-modules",
"author": [
"Jonathan Worthington"
],
"build-depends": [
],
"depends": [
"Libarchive",
"LibXML:ver<0.10.6+>"
],
"description": "blah blah blah",
"description": "Work with Excel (XLSX) spreadsheets",
"license": "Artistic-2.0",
"name": "Spreadsheet::XLSX",
"perl": "6.*",
Expand All @@ -30,9 +33,9 @@
"resources": [
],
"source-url": "https://github.com/raku-community-modules/Spreadsheet-XLSX.git",
"tags": [
"tags": [ "SPREADSHEET", "XLSX"
],
"test-depends": [
],
"version": "0.3.1"
"version": "0.3.2"
}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![Actions Status](https://github.com/raku-community-modules/Spreadsheet-XLSX/actions/workflows/linux.yml/badge.svg)](https://github.com/raku-community-modules/Spreadsheet-XLSX/actions)

NAME
====

Expand Down
2 changes: 1 addition & 1 deletion dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ filename = lib/Spreadsheet/XLSX.rakumod
[UploadToZef]

[Badges]
provider = github-actions/test.yml
provider = github-actions/linux.yml
2 changes: 1 addition & 1 deletion lib/Spreadsheet/XLSX.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
=head1 NAME
Spreadsheet::XLSX - blah blah blah
Spreadsheet::XLSX - Work with Excel (XLSX) spreadsheets
=head1 DESCRIPTION
Expand Down

0 comments on commit 68bc1c4

Please sign in to comment.