Updated tests
This commit is contained in:
parent
78458a414e
commit
fb8ed52b68
1 changed files with 26 additions and 0 deletions
26
.github/workflows/tests.yml
vendored
Normal file
26
.github/workflows/tests.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
name: Tests
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
tests:
|
||||
name: PHP ${{ matrix.php }}
|
||||
strategy:
|
||||
matrix:
|
||||
php: [8.0, 7.4, 7.3, 7.2, 7.1, 7.0, 5.6]
|
||||
runs-on: ubuntu-18.04
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php }}
|
||||
extensions: curl, exif, gd, mbstring, zip
|
||||
coverage: none
|
||||
- name: Setup tests
|
||||
run: |
|
||||
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
|
||||
php yellow.php about
|
||||
env:
|
||||
URL: http://website/
|
||||
- name: Run tests
|
||||
run: php yellow.php build test
|
Loading…
Add table
Reference in a new issue