This repository was archived by the owner on Apr 27, 2026. It is now read-only.
Merge pull request #1594 from camsmith/patch-1 #1998
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Get Composer Cache Directory | |
| id: composer-cache | |
| run: | | |
| echo "cache_dir=$(composer config cache-files-dir)" >> $GITHUB_ENV | |
| - uses: actions/cache@v4 | |
| with: | |
| path: ${{ env.cache_dir }} | |
| key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-composer- | |
| - name: Install dependencies | |
| run: | | |
| composer install --no-dev --no-interaction --no-scripts | |
| cd vendor-bin/box | |
| composer install --no-interaction | |
| - name: Symlink vendor/bin/box | |
| run: | | |
| mkdir -p vendor/bin | |
| ln -s "$(realpath vendor-bin/box/vendor/bin/box)" vendor/bin/box | |
| - name: Build platform.phar | |
| env: | |
| CI_COMMIT_SHA: ${{ github.sha }} | |
| CI_COMMIT_REF_NAME: ${{ github.ref_name }} | |
| run: | | |
| CI_COMMIT_SHORT_SHA=$(echo $CI_COMMIT_SHA | head -c8) | |
| ./bin/platform self:build --no-composer-rebuild --yes --replace-version "$CI_COMMIT_REF_NAME"-"$CI_COMMIT_SHORT_SHA" --output platform.phar | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.25 | |
| cache-dependency-path: cli/go.sum | |
| - name: Lint Go files | |
| run: make lint-gofmt | |
| - name: Run integration tests | |
| run: | | |
| export TEST_CLI_PATH=$(realpath "./platform.phar") | |
| chmod +x "$TEST_CLI_PATH" | |
| cd go-tests | |
| go test ./... -v | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: cli-phar | |
| path: platform.phar | |
| # TODO run these when upgraded for PHP 8+ compatibility | |
| # - name: Run unit tests | |
| # run: | | |
| # # Install PHPUnit | |
| # composer install --no-interaction --no-scripts | |
| # ./scripts/test/unit.sh |