Remove the pass through createDirectory method in PGcore.pm. #896
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: Lint Code Base | |
defaults: | |
run: | |
shell: bash | |
on: | |
push: | |
branches-ignore: [main, develop] | |
pull_request: | |
jobs: | |
perltidy: | |
name: Run perltidy on Perl Files | |
runs-on: ubuntu-22.04 | |
container: | |
image: perl:5.34 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: perl -V | |
run: perl -V | |
- name: Install dependencies | |
run: cpanm -n Perl::Tidy@20220613 | |
- name: perltidy --version | |
run: perltidy --version | |
- name: Run perltidy | |
shell: bash | |
run: | | |
git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
shopt -s extglob globstar nullglob | |
perltidy --pro=./.perltidyrc -b -bext='/' ./**/*.p[lm] ./**/*.t && git diff --exit-code |