Skip to content

Commit 10c8b45

Browse files
committed
updated oembed, testing github workflows
1 parent 1bd16af commit 10c8b45

File tree

3 files changed

+163
-35
lines changed

3 files changed

+163
-35
lines changed

.github/workflows/test.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)