Skip to content

Commit

Permalink
Merge pull request #874 from xabbuh/ci-1.8
Browse files Browse the repository at this point in the history
enable GitHub Actions and drop support for PHP < 7.1
  • Loading branch information
erusev authored Jul 15, 2024
2 parents 87b57bf + 44fd383 commit 89880dd
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 31 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
on:
- push
- pull_request

jobs:
phpunit:
runs-on: ubuntu-latest

strategy:
matrix:
include:
- '7.1'
- '7.2'
- '7.3'
- '7.4'
- '8.0'
- '8.1'
- '8.2'
- '8.3'
- '8.4'

steps:
- name: Checkout the source code
uses: actions/checkout@v4

- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '${{ matrix.php }}'

- name: Install dependencies
run: composer install

- name: Run tests
run: |
vendor/bin/phpunit
vendor/bin/phpunit test/CommonMarkTestWeak.php || true
28 changes: 0 additions & 28 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
}
],
"require": {
"php": ">=5.3.0",
"php": ">=7.1",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35"
"phpunit/phpunit": "^7.5|^8.5|^9.6"
},
"autoload": {
"psr-0": {"Parsedown": ""}
Expand Down
4 changes: 3 additions & 1 deletion test/CommonMarkTestStrict.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<?php

use PHPUnit\Framework\TestCase;

/**
* Test Parsedown against the CommonMark spec
*
* @link http://commonmark.org/ CommonMark
*/
class CommonMarkTestStrict extends PHPUnit_Framework_TestCase
class CommonMarkTestStrict extends TestCase
{
const SPEC_URL = 'https://github.com/raw/jgm/CommonMark/master/spec.txt';

Expand Down

0 comments on commit 89880dd

Please sign in to comment.