Skip to content

Commit b4b8c73

Browse files
committed
Install stty required for tests on ubuntu-latest
1 parent adf3116 commit b4b8c73

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/tests.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,17 @@ jobs:
3737
- name: "Checkout code"
3838
uses: actions/[email protected]
3939

40+
# Install stty required for tests
41+
- name: Install system dependencies
42+
if: ${{ matrix.operating-system }} == 'ubuntu-latest'
43+
run: |
44+
echo "::group::apt-get update"
45+
sudo apt-get update
46+
echo "::endgroup::"
47+
echo "::group::install tools & libraries"
48+
sudo apt-get install coreutils
49+
echo "::endgroup::"
50+
4051
- name: "Install PHP with extensions"
4152
uses: shivammathur/[email protected]
4253
with:

0 commit comments

Comments
 (0)