Skip to content
This repository was archived by the owner on Jul 23, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: linux

on:
push:
branches: [ '*' ]
pull_request:
branches: [ master ]
workflow_dispatch:
branches: [ '*' ]

jobs:

test:
runs-on: ubuntu-latest
strategy:
matrix:
perl-version:
# In buster we can't install lua
# - 5.8-buster
# - ...
# - 5.28-buster
- 5.30-bullseye
- 5.32-bullseye
- 5.34-bullseye
- 5.36-bookworm
- 5.38-bookworm
- 5.40-bookworm
- latest

container:
image: perl:${{ matrix.perl-version }}

steps:
- uses: actions/checkout@v3
- run: env | sort
- run: perl -V
- name: Install deps
run: |
apt-get update && apt-get install -y liblua5.4-dev lua5.4

cpanm --quiet --notest Inline Test::Exception
- name: Run Tests
run: |
perl Makefile.PL
make test