fix(ci): add '-y' flag to apt install for non-interactive execution
All checks were successful
Perl Tests / perl (5.20-buster) (push) Successful in 4m0s
Perl Tests / perl (latest) (push) Successful in 3m34s
Perl Tests / perl (threaded) (push) Successful in 3m21s

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:
Kumi 2024-09-18 20:30:58 +02:00
parent 8926c0d16e
commit d8e9c38ced
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -42,7 +42,7 @@ jobs:
rm -f cpanfile.snapshot rm -f cpanfile.snapshot
cp .github/travelynx.conf travelynx.conf cp .github/travelynx.conf travelynx.conf
- name: Install PostgreSQL Client Library - name: Install PostgreSQL Client Library
run: apt install libpq-dev run: apt install libpq-dev -y
- name: Install Perl Dependencies - name: Install Perl Dependencies
run: curl -sL https://raw.githubusercontent.com/skaji/cpm/master/cpm | perl - install -g --show-build-log-on-failure run: curl -sL https://raw.githubusercontent.com/skaji/cpm/master/cpm | perl - install -g --show-build-log-on-failure
- name: Run Tests - name: Run Tests