File tree Expand file tree Collapse file tree 5 files changed +43
-12
lines changed Expand file tree Collapse file tree 5 files changed +43
-12
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ - v*.x
8
+ pull_request :
9
+
10
+ jobs :
11
+ test :
12
+ runs-on : ubuntu-latest
13
+ strategy :
14
+ matrix :
15
+ php-versions : ['7.3', '7.4', '8']
16
+ steps :
17
+ - uses : actions/checkout@v2
18
+
19
+ - name : Setup PHP ${{ matrix.php-versions }}
20
+ uses : shivammathur/setup-php@v2
21
+ with :
22
+ php-version : ${{ matrix.php-versions }}
23
+ extensions : gd
24
+ coverage : none
25
+
26
+ - name : Cache Composer packages
27
+ id : composer-cache
28
+ uses : actions/cache@v2
29
+ with :
30
+ path : vendor
31
+ key : ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
32
+ restore-keys : |
33
+ ${{ runner.os }}-php-
34
+
35
+ - name : Install dependencies
36
+ run : composer install --prefer-dist --no-progress
37
+
38
+ - name : Run test suite
39
+ run : vendor/bin/phpunit
Original file line number Diff line number Diff line change
1
+ .DS_Store
1
2
vendor /
2
3
.idea
3
4
.phpunit.result.cache
4
- composer.lock
5
+ composer.lock
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
MIT License
2
2
3
- Copyright (c) 2018 Fabian Meyer
3
+ Copyright (c) 2018 - 2022 Fabian Meyer
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 1
1
# AssertGD for PHPUnit
2
2
3
- [ ![ Build Status ] ( https://travis-ci .com/meyfa/phpunit-assert-gd. svg?branch=master )] ( https://travis-ci .com/meyfa/phpunit-assert-gd )
3
+ [ ![ CI ] ( https://github .com/meyfa/phpunit-assert-gd/actions/workflows/main.yml/badge. svg )] ( https://github .com/meyfa/phpunit-assert-gd/actions/workflows/main.yml )
4
4
5
5
Trying to assert images with PHPUnit? This project provides a constraint and the
6
6
required assertions that allow you do to so.
You can’t perform that action at this time.
0 commit comments