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 6cd57ab commit d344660Copy full SHA for d344660
.github/workflows/tests.yaml
@@ -24,7 +24,7 @@ env:
24
25
jobs:
26
tests:
27
- runs-on: ubuntu-latest
+ runs-on: ubuntu-20.04
28
strategy:
29
matrix:
30
php-version: ["7.4", "8.0", "8.1"]
@@ -50,12 +50,11 @@ jobs:
50
--no-progress \
51
--prefer-dist
52
- run: |
53
- mkdir -p $HOME/bin
54
- export PATH="$HOME/bin:$PATH"
55
wget https://releases.hashicorp.com/consul/1.12.1/consul_1.12.1_linux_amd64.zip
56
- unzip consul_1.12.1_linux_amd64.zip -d "${HOME}/bin"
+ unzip consul_1.12.1_linux_amd64.zip -d /usr/local/bin/
57
rm consul_1.12.1_linux_amd64.zip
58
- chmod +x "${HOME}/bin/consul"
+ chmod +x /usr/local/bin/consul
+ consul --version
59
60
61
./vendor/bin/phpunit -c phpunit.xml
0 commit comments