Dependency tests #1059
This file contains 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: Dependency tests | |
on: | |
schedule: | |
- cron: '1 3 * * *' | |
workflow_dispatch: | |
jobs: | |
stable: | |
name: Test @stable deps | |
uses: ./.github/workflows/run-tests.yml | |
dev: | |
name: Test @dev deps | |
uses: ./.github/workflows/run-tests.yml | |
with: | |
deps: dev | |
lowest: | |
name: Test --prefer-lowest deps | |
uses: ./.github/workflows/run-tests.yml | |
with: | |
deps: lowest | |
continue_on_error: true | |
build: | |
name: Test Phar build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4.2.2 | |
- name: Install PHP | |
uses: shivammathur/setup-php@2.31.1 | |
with: | |
php-version: '7.4' | |
tools: composer:v2 | |
coverage: none | |
- name: Install dependencies | |
uses: nick-fields/retry@v3.0.0 | |
with: | |
timeout_minutes: 5 | |
max_attempts: 5 | |
command: composer update --no-interaction --no-progress | |
- name: Build Phar binaries | |
run: make build | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4.4.3 | |
with: | |
name: binaries | |
path: build/*/psysh | |
- name: Smoke test | |
run: .github/bin/smoketest.sh |