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

Commit 3546593

Browse files
authored
Merge pull request #1 from 8fold/8fold-sites
Create php.yml
2 parents ba0a41a + e5d74de commit 3546593

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/php.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: PHP Composer
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
19+
- name: Validate composer.json and composer.lock
20+
run: composer validate
21+
22+
- name: Install dependencies
23+
run: composer install --prefer-dist --no-progress --no-suggest
24+
25+
- name: Run test suite
26+
run: vendor/bin/phpunit

0 commit comments

Comments
 (0)