We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 339efe6 commit 6ec03d5Copy full SHA for 6ec03d5
1 file changed
.github/workflows/ci-tests.yaml
@@ -23,6 +23,17 @@ jobs:
23
perl: latest
24
name: 🐪 Perl ${{ matrix.perl }} on ${{ matrix.os }}
25
steps:
26
+ - name: Install Bash 4 and GNU sed on Mac
27
+ if: matrix.os == 'macos-latest'
28
+ run: |
29
+ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
30
+ brew update
31
+
32
+ brew install bash
33
+ brew install gnu-sed
34
35
+ echo "/usr/local/bin" >> $GITHUB_PATH
36
+ echo "$(brew --prefix)/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
37
- uses: actions/checkout@v4
38
- uses: shogo82148/actions-setup-perl@v1
39
with:
0 commit comments