Skip to content

Commit 17b364c

Browse files
committed
switching from apt-get to apk for Perl package installation
1 parent fae9453 commit 17b364c

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/build_and_test.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,8 @@ jobs:
6565
with:
6666
scheme: full
6767
run: |
68-
sudo apt-get update
69-
sudo apt-get install -y perl libyaml-tiny-perl libfile-homedir-perl libfile-find-rule-perl
70-
sudo cpan -i Unicode::GCString
68+
apk add --no-cache perl perl-yaml-tiny perl-file-homedir perl-file-find-rule
69+
cpan -i Unicode::GCString
7170
find . -name "*.tex" | while read file; do
7271
perl $(kpsewhich latexindent.pl) "$file" > "$file.formatted"
7372
if ! diff -q "$file" "$file.formatted" > /dev/null; then

0 commit comments

Comments
 (0)