Skip to content

Commit

Permalink
Merge pull request #37 from vividsnow/master
Browse files Browse the repository at this point in the history
basic github ci
  • Loading branch information
vividsnow authored Aug 19, 2024
2 parents 3194cf8 + baa9737 commit 0966f48
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/basic.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: basic

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

jobs:
perl:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
perl-version:
- 'latest'

container:
image: perldocker/perl-tester:${{ matrix.perl-version }}

steps:
- uses: actions/checkout@v1
- name: perl -V
run: perl -V
- name: picoparser
run: git submodule init && git submodule update
- name: Deps 0
run: cpanm EV::MakeMaker
- name: Makefile.PL
run: perl Makefile.PL
- name: Deps 1
run: cpanm --installdeps .
- name: make
run: make
- name: make test
run: make test

0 comments on commit 0966f48

Please sign in to comment.