We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9d8d3a4 + 041d47d commit 0b305f0Copy full SHA for 0b305f0
.github/workflows/test.yml
@@ -11,15 +11,19 @@ jobs:
11
strategy:
12
matrix:
13
perl-version:
14
- - '5.10'
+ - '5.14-buster'
15
- latest
16
container:
17
image: perl:${{ matrix.perl-version }}
18
steps:
19
- - uses: actions/checkout@v1
+ - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
20
- name: perl version
21
run: perl -V
22
- name: Install minilla
23
run: cpanm -n Minilla
24
+ - name: Preinstall OAuth::Lite without tests # workaround for OpenSSL 3 issues
25
+ run: cpanm -n --notest OAuth::Lite::Consumer
26
+ - name: Mark workspace as safe for git
27
+ run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
28
- name: minil test
29
run: minil test
0 commit comments