Remove login in side bar #374
This file contains hidden or 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 Per MacOS | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
pull_request: | |
jobs: | |
perl: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Perl | |
run: brew install perl | |
- name: perl -V | |
run: perl -V | |
- name: Install dependencies | |
run: | | |
curl -L https://cpanmin.us > cpanm | |
perl cpanm https://github.com/Akron/Mojolicious-Plugin-Localize.git | |
perl cpanm --installdeps . | |
- name: Run Tests | |
run: prove -lr t/ |