JSON-encode objects with no TO_JSON or stringification overload as null #1530
Workflow file for this run
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: 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 . | |
curl -L https://cpanmin.us | perl - -n TAP::Formatter::GitHubActions | |
- name: Run Tests | |
run: prove --merge --formatter TAP::Formatter::GitHubActions -l t t/mojo t/mojolicious |