[scheduler] Even more resilient perl beanstalkd annotation worker #390
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: Perl Tidy & Critic Check | |
on: | |
push: | |
paths: | |
- '**.pl' | |
- '**.pm' | |
- '**.t' | |
pull_request: | |
paths: | |
- '**.pl' | |
- '**.pm' | |
- '**.t' | |
jobs: | |
tidy-critic-check: | |
runs-on: ubuntu-latest | |
container: | |
image: perldocker/perl-tester:latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Run tidyall | |
shell: bash | |
run: | | |
cd perl | |
tidyall --check-only --quiet --all |