Skip to content

Commit

Permalink
Add Github test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-kennedy committed Jul 19, 2024
1 parent d2d6210 commit c52c95d
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false

container:
image: perldocker/perl-tester:latest

steps:
- uses: actions/checkout@main
with:
submodules: recursive
- name: Install Dependencies
run: apt-get install -y libcue-dev
- run: perl -V
- run: perl Makefile.PL
- run: make
- run: prove -wlvmb t

perlcritic:
uses: PerlToolsTeam/github_workflows/.github/workflows/cpan-perlcritic.yml@main

0 comments on commit c52c95d

Please sign in to comment.