This repository was archived by the owner on Aug 10, 2025. It is now read-only.
Update README to announce sunsetting #1080
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: perltidy | |
| on: [push, pull_request] | |
| jobs: | |
| perltidy: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: perl:5.32 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: perl -V | |
| run: perl -V | |
| - name: Install dependencies | |
| run: cpanm --quiet --installdeps --notest --with-develop . | |
| - name: perltidy --version | |
| run: perltidy --version | |
| - name: Run perltidy | |
| shell: bash | |
| run: ./format_files.sh --check |