summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-02-26 17:09:28 +0300
committerValery Piashchynski <[email protected]>2020-02-26 17:09:28 +0300
commit038517ca5e4e8d53614ca406fd2edda306a58875 (patch)
tree43c963f74d0e3232a1e7fc66c19b27c4ef1fc0e2
parentdba47ae114d385c4288cdc811b7a7ba648063e74 (diff)
Fix build targets
Replace && --> ;
-rw-r--r--.github/workflows/ci-build.yml4
-rw-r--r--util/network.go2
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml
index b70a5d30..468d39fd 100644
--- a/.github/workflows/ci-build.yml
+++ b/.github/workflows/ci-build.yml
@@ -4,7 +4,7 @@ on: [push, pull_request]
jobs:
build:
- name: Build (PHP ${{ matrix.php }}, Go ${{ matrix.go }})
+ name: Build (PHP ${{ matrix.php }}, Go ${{ matrix.go }}, OS ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
@@ -33,7 +33,7 @@ jobs:
fetch-depth: 1
- name: Show versions
- run: php -v && composer -V && go version
+ run: php -v ; composer -V ; go version
- name: Debug if needed
env:
diff --git a/util/network.go b/util/network.go
index 54d29519..d858cb0a 100644
--- a/util/network.go
+++ b/util/network.go
@@ -1,4 +1,4 @@
-// +build linux
+// +build linux darwin freebsd
package util