fix(ci): add '-y' flag to apt install for non-interactive execution
Included the '-y' flag to the 'apt install libpq-dev' command in the GitHub Actions workflow to ensure it proceeds without manual intervention. This change prevents the workflow from stalling during the package installation step, facilitating smoother automated CI runs.
This commit is contained in:
parent
8926c0d16e
commit
d8e9c38ced
1 changed files with 1 additions and 1 deletions
2
.github/workflows/perl.yml
vendored
2
.github/workflows/perl.yml
vendored
|
@ -42,7 +42,7 @@ jobs:
|
|||
rm -f cpanfile.snapshot
|
||||
cp .github/travelynx.conf travelynx.conf
|
||||
- name: Install PostgreSQL Client Library
|
||||
run: apt install libpq-dev
|
||||
run: apt install libpq-dev -y
|
||||
- name: Install Perl Dependencies
|
||||
run: curl -sL https://raw.githubusercontent.com/skaji/cpm/master/cpm | perl - install -g --show-build-log-on-failure
|
||||
- name: Run Tests
|
||||
|
|
Loading…
Reference in a new issue