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.
1 parent adf3116 commit b4b8c73Copy full SHA for b4b8c73
.github/workflows/tests.yaml
@@ -37,6 +37,17 @@ jobs:
37
- name: "Checkout code"
38
uses: actions/[email protected]
39
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
50
+
51
- name: "Install PHP with extensions"
52
uses: shivammathur/[email protected]
53
with:
0 commit comments