diff options
-rw-r--r-- | .github/workflows/ci-build.yml | 4 | ||||
-rw-r--r-- | util/network.go | 2 |
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 |