mirror of
https://github.com/perlbot/perlbuut
synced 2025-06-07 11:15:40 -04:00
26 lines
592 B
YAML
26 lines
592 B
YAML
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
perl-job:
|
|
runs-on: [self-hosted, ${{ matrix.architecture }}]
|
|
container:
|
|
image: perl:${{ matrix.perl-version }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
architecture:
|
|
- X64
|
|
- ARM
|
|
perl-version:
|
|
- '5.32'
|
|
- 'latest'
|
|
name: Perl ${{ matrix.perl-version }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Regular tests
|
|
run: |
|
|
apt update && apt -y install libprotobuf-dev libprotoc-dev
|
|
cpanm --installdeps --notest .
|
|
bin/run-tests
|