Skip to content

Commit

Permalink
Add workflow and badges
Browse files Browse the repository at this point in the history
  • Loading branch information
FCO committed Feb 6, 2024
1 parent ca2b952 commit 793f547
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
@@ -0,0 +1,3 @@
# These are supported funding model platforms

github: FCO
29 changes: 29 additions & 0 deletions .github/workflows/matrix.yaml
@@ -0,0 +1,29 @@
name: test
on:
push:
branches:
- "*"
tags-ignore:
- "*"
pull_request:
jobs:
raku:
strategy:
matrix:
os:
- ubuntu-latest
raku-version:
- "2024.01"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: Raku/setup-raku@v1
with:
raku-version: ${{ matrix.raku-version }}
- run: raku -V
- name: Install dependencies
run: |
zef install --/test --test-depends --deps-only .
zef install --/test App::Prove6
- name: Run tests
run: prove6 -lj8 t
2 changes: 2 additions & 0 deletions README.md
@@ -1,3 +1,5 @@
[![Build Status](https://github.com/FCO/Configuration/workflows/test/badge.svg)](https://github.com/FCO/Configuration/actions) [![SparrowCI](https://ci.sparrowhub.io/project/gh-FCO-Configuration/badge)](https://ci.sparrowhub.io)

Very early stage of development!

Example
Expand Down
3 changes: 3 additions & 0 deletions lib/Configuration.rakumod
Expand Up @@ -166,6 +166,9 @@ multi EXPORT {

=begin pod
[![Build Status](https://github.com/FCO/Configuration/workflows/test/badge.svg)](https://github.com/FCO/Configuration/actions)
[![SparrowCI](https://ci.sparrowhub.io/project/gh-FCO-Configuration/badge)](https://ci.sparrowhub.io)
Very early stage of development!
=head1 Example
Expand Down

0 comments on commit 793f547

Please sign in to comment.