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 b97c682 commit 072d85aCopy full SHA for 072d85a
1 file changed
.github/workflows/quality.yml
@@ -75,7 +75,7 @@ jobs:
75
76
- name: Install BATS
77
run: |
78
- if [ "${{ matrix.os }}" = "macos-latest" ]; then
+ if [ "${{ runner.os }}" = "macOS" ]; then
79
brew install bats-core
80
else
81
sudo apt-get update
@@ -113,10 +113,11 @@ jobs:
113
114
export PHPVM_DIR="$HOME/.phpvm-test"
115
mkdir -p "$PHPVM_DIR"
116
+ chmod +x install.sh
117
./install.sh
118
119
- name: Test PHP Installation (macOS)
- if: matrix.os == 'macos-latest'
120
+ if: runner.os == 'macOS'
121
122
source "$HOME/.phpvm-test/phpvm.sh"
123
@@ -133,7 +134,7 @@ jobs:
133
134
phpvm current
135
136
- name: Test PHP Installation (Ubuntu)
- if: matrix.os == 'ubuntu-latest'
137
+ if: runner.os == 'Linux'
138
139
140
0 commit comments