diff options
author | Valery Piashchynski <[email protected]> | 2020-02-26 17:09:28 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-02-26 17:09:28 +0300 |
commit | 038517ca5e4e8d53614ca406fd2edda306a58875 (patch) | |
tree | 43c963f74d0e3232a1e7fc66c19b27c4ef1fc0e2 /.github | |
parent | dba47ae114d385c4288cdc811b7a7ba648063e74 (diff) |
Fix build targets
Replace && --> ;
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci-build.yml | 4 |
1 files changed, 2 insertions, 2 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: |