This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
Continuous Integration #1268
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: Continuous Integration | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '42 16 * * *' | |
jobs: | |
build: | |
name: HHVM ${{matrix.hhvm}} - ${{matrix.os}} | |
strategy: | |
# Run tests on all OS's and HHVM versions, even if one fails | |
fail-fast: false | |
matrix: | |
os: [ ubuntu ] | |
hhvm: | |
- '4.128' | |
- latest | |
- nightly | |
runs-on: ${{matrix.os}}-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Create branch for version alias | |
run: git checkout -b CI_current_pull_request | |
- uses: hhvm/actions/hack-lint-test@master | |
with: | |
hhvm: ${{matrix.hhvm}} |