Scroll to top after click on example queries #328
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 Perl Linux | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
pull_request: | |
jobs: | |
perl: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
perl-version: | |
- '5.36' | |
- '5.38' | |
name: Perl ${{ matrix.perl-version }} on Linux | |
container: | |
image: perl:${{ matrix.perl-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: perl -V | |
run: perl -V | |
- name: Install dependencies | |
run: | | |
cpanm https://github.com/Akron/Mojolicious-Plugin-Localize.git | |
cpanm --installdeps . | |
cpanm -n Cpanel::JSON::XS EV | |
- name: Run tests | |
run: prove -lr t/ |