Kaiepi / raku-container-action

First attempt at creating a Raku container action

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Raku Container Action

This is a container action that uses Raku (formerly known as Perl 6) to run tests on your code. Add a file just like this one to your .github/workflows directory, calling it test.yml or whatever

on: [push]

jobs:
  test:
    runs-on: ubuntu-latest
    name: Tests this
    steps:
    - name: Checkout
      uses: actions/checkout@v1
    - name: Runs tests
      id: tests
      uses: JJ/raku-container-action@master

See it in action, for instance in this repo.

See also

Check out this article on GitHub actions and Raku as well as the Raku-setup action from the official repos.

About

First attempt at creating a Raku container action

License:MIT License


Languages

Language:Dockerfile 100.0%