Perl Makemaker CI #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Perl Makemaker CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "master-off" ] | |
pull_request: | |
branches: [ "master-off" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install dependencies | |
run: sudo apt-get install firebird3.0-server-core firebird-dev libdbi-perl libfile-which-perl libtest-checkdeps-perl libtest-deep-perl libtest-exception-perl perl-xs-dev perl | |
- name: configure | |
run: perl Makefile.PL | |
- name: make | |
run: make | |
- name: make test | |
run: make test |