v3.07 : -where_on : support for table aliases and association names #5
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: CI | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
runner: [ubuntu-latest, macos-latest, windows-latest] | |
perl: [ '5.10', '5.30', '5.36' ] | |
exclude: | |
- runner: windows-latest | |
perl: '5.36' | |
runs-on: ${{matrix.runner}} | |
name: OS ${{matrix.runner}} Perl ${{matrix.perl}} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up perl | |
uses: shogo82148/actions-setup-perl@v1 | |
with: | |
perl-version: ${{ matrix.perl }} | |
distribution: ${{ ( startsWith( matrix.runner, 'windows-' ) && 'strawberry' ) || 'default' }} | |
- name: Show Perl Version | |
run: | | |
perl -v | |
- name: Install Modules | |
run: | | |
cpanm --installdeps --notest . | |
- name: Show Errors on Windows | |
if: ${{ failure() && startsWith( matrix.runner, 'windows-')}} | |
run: | | |
ls -l C:/Users/ | |
ls -l C:/Users/RUNNER~1/ | |
cat C:/Users/runneradmin/.cpanm/work/*/build.log | |
- name: Show Errors on Ubuntu | |
if: ${{ failure() && startsWith( matrix.runner, 'ubuntu-')}} | |
run: | | |
cat /home/runner/.cpanm/work/*/build.log | |
- name: Show Errors on OSX | |
if: ${{ failure() && startsWith( matrix.runner, 'macos-')}} | |
run: | | |
cat /Users/runner/.cpanm/work/*/build.log | |
- name: Run tests | |
env: | |
AUTHOR_TESTING: 1 | |
RELEASE_TESTING: 1 | |
run: | | |
perl Build.PL | |
perl Build manifest | |
perl Build | |
perl Build test | |