increase performance in 17% on TO_JSON method when it is bitfield by … #47
Workflow file for this run
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@v3 | |
- 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 |