Skip to content
This repository has been archived by the owner on Apr 1, 2024. It is now read-only.

Continuous Integration #1249

Continuous Integration

Continuous Integration #1249

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}}