Skip to content

move back test workflow!!; #2

move back test workflow!!;

move back test workflow!!; #2

Workflow file for this run

name: Run Builds
on: [push]
jobs:
tests:
name: Run Builds
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv
coverage: none
- name: Run composer install
run: composer install -n --prefer-dist
- name: Run phar build
run: php dockerfile-laravel app:build dockerfile-laravel --build-version=1.0.4
- name: Run windows builds
run: vendor/bin/haulable builds/dockerfile-laravel --platform="All Platforms"
- name: Move builds into the builds folder
run: mv windows_x64 builds/windows_x64 && \
mv linux_aarch64 builds/linux_aarch64 && \

Check failure on line 30 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 30
mv linux_x86_64 builds/linux_x86_64 && \
mv macos_apple builds/macos_apple && \
mv macos_intel builds/macos_intel