File tree Expand file tree Collapse file tree 3 files changed +163
-35
lines changed
Expand file tree Collapse file tree 3 files changed +163
-35
lines changed Original file line number Diff line number Diff line change 1+ name : " testing"
2+
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
7+ branches : [ master ]
8+
9+ jobs :
10+ tests :
11+ name : Tests
12+ runs-on : ubuntu-latest
13+
14+ strategy :
15+ matrix :
16+ php :
17+ - 7.4
18+ - 8.0
19+
20+ steps :
21+ - name : Checkout
22+ uses : actions/checkout@v2
23+
24+ - name : Install PHP
25+ uses : shivammathur/setup-php@v2
26+ with :
27+ php-version : ${{ matrix.php }}
28+
29+ - name : Cache PHP dependencies
30+ uses : actions/cache@v2
31+ with :
32+ path : vendor
33+ key : ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
34+ restore-keys : ${{ runner.os }}-php-${{ matrix.php }}-composer-
35+
36+ - name : Install dependencies
37+ run : composer install
38+
39+ - name : Tests
40+ run : composer test
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88## [ 4.3.2] - 2021-04-04
99### Fixed
1010- Add configured oEmbed query parameters to all oEmbed endpoints [ #437 ]
11+ - Updated oEmbed endpoints.
12+ - Replace Travis with Github workflows for testing
1113
1214## [ 4.3.1] - 2021-03-21
1315### Added
You can’t perform that action at this time.
0 commit comments