Also recommend to empty the cookie jar #1275
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: macos | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
pull_request: | |
jobs: | |
perl: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Perl | |
run: brew install perl | |
- name: perl -V | |
run: perl -V | |
- name: Install Dependencies | |
run: curl -L https://cpanmin.us | perl - --installdeps . | |
- name: Run Tests | |
run: prove -l t t/mojo t/mojolicious |