Skip to content
This repository was archived by the owner on Aug 1, 2023. It is now read-only.

Commit e5fe342

Browse files
committed
migrate to github actions
1 parent 8e65fef commit e5fe342

File tree

4 files changed

+25
-31
lines changed

4 files changed

+25
-31
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Continuous Integration
2+
on:
3+
push:
4+
pull_request:
5+
schedule:
6+
- cron: '42 15 * * *'
7+
jobs:
8+
build:
9+
name: HHVM ${{matrix.hhvm}} - ${{matrix.os}}
10+
strategy:
11+
# Run tests on all OS's and HHVM versions, even if one fails
12+
fail-fast: false
13+
matrix:
14+
os: [ ubuntu ]
15+
hhvm:
16+
- '4.62'
17+
- latest
18+
- nightly
19+
runs-on: ${{matrix.os}}-latest
20+
steps:
21+
- uses: actions/checkout@v2
22+
- uses: hhvm/actions/hack-lint-test@master
23+
with:
24+
hhvm: ${{matrix.hhvm}}

.travis.sh

Lines changed: 0 additions & 16 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"hhvm/hhvm-autoload": "^2.0|^3.0",
1717
"hhvm/hacktest": "^2.0",
1818
"facebook/fbexpect": "^2.6.1",
19-
"usox/hackttp": "dev-master"
19+
"usox/hackttp": "^0.5"
2020
},
2121
"extra": {
2222
"branch-alias": {

0 commit comments

Comments
 (0)