Skip to content

Commit d9ea392

Browse files
committed
Replace Travis CI with Github Actions
1 parent 2876043 commit d9ea392

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

.github/workflows/phpspy_test.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: phpspy_test
2+
on: [push, pull_request]
3+
jobs:
4+
phpspy_test_job:
5+
runs-on: ubuntu-20.04
6+
steps:
7+
- name: checkout
8+
uses: actions/checkout@v2
9+
with:
10+
submodules: recursive
11+
- name: deps
12+
run: |
13+
sudo apt-get install -y php7.4-cli
14+
echo "php_path:=/usr/bin/php7.4" | sudo tee config.mk
15+
- name: test
16+
run: make test

.travis.yml

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

0 commit comments

Comments
 (0)