Skip to content

Commit

Permalink
run tests using GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
xabbuh committed Jul 15, 2024
1 parent 54f1ffc commit 44fd383
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 29 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: 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://raw.githubusercontent.com/jgm/CommonMark/master/spec.txt';

Expand Down

0 comments on commit 44fd383

Please sign in to comment.