Skip to content

Commit 753b51f

Browse files
authored
Merge pull request #73 from battye/issue/72
Migrate Travis CI to GitHub Actions
2 parents cff143b + 69718cb commit 753b51f

File tree

3 files changed

+33
-20
lines changed

3 files changed

+33
-20
lines changed

.github/workflows/phpunit.yaml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# .github/workflows/phpunit.yaml
2+
name: phpunit
3+
4+
on: [push, pull_request]
5+
6+
jobs:
7+
tests:
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
php: ['7.0', '7.1', '7.2', '7.3', '7.4']
12+
13+
name: PHP ${{ matrix.php }} tests
14+
steps:
15+
- run: echo "This job for ${{ github.ref }} was automatically triggered by a ${{ github.event_name }} event on ${{ runner.os }}."
16+
17+
# Basically git clone
18+
- uses: actions/checkout@v2
19+
20+
# Use PHP of specific version
21+
- uses: shivammathur/setup-php@v2
22+
with:
23+
php-version: ${{ matrix.php }}
24+
coverage: none # disable xdebug, pcov
25+
26+
# If we use two steps like this, we can better see if composer or the test failed
27+
- run: composer install --dev --no-interaction --prefer-source
28+
- run: vendor/phpunit/phpunit/phpunit
29+
- run: echo "This job's status is ${{ job.status }}."

.travis.yml

-16
This file was deleted.

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ If you are missing the English language files for the official Viglink extension
4141

4242
## Tests
4343

44-
[![Build Status](https://travis-ci.org/phpbb/phpbb-translation-validator.png?branch=master)](https://travis-ci.org/phpbb/phpbb-translation-validator)
44+
![GitHub Actions CI](https://github.com/phpbb/phpbb-translation-validator/actions/workflows/phpunit.yaml/badge.svg?branch=master)
4545

46-
Add the TranslationValidator as a dependency:
46+
In your project you can add phpBB Translation Validator as a dependency:
4747

4848
{
4949
"require-dev": {
5050
"phpbb/translation-validator": "1.5.*"
5151
}
5252
}
5353

54-
Then add a `php vendor/bin/translation.php` call to your `.travis.yml` file.
54+
Then add a `php vendor/bin/translation.php` call to your workflow.
5555

56-
We use Travis-CI as a continuous integration server and phpunit for our unit testing. See more information on the [phpBB development wiki](https://wiki.phpbb.com/Unit_Tests).
56+
We use GitHub Actions as a continuous integration server and phpunit for our unit testing.
5757

5858
To run the unit tests locally, use this command:
5959

0 commit comments

Comments
 (0)