-
Notifications
You must be signed in to change notification settings - Fork 5
31 lines (27 loc) · 789 Bytes
/
Copy pathtest.yml
File metadata and controls
31 lines (27 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
name: Testing and linting
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
schedule:
- cron: '45 8 * * 6'
env:
TYPO3_EXTENSION_KEY: mediaoembed
MAIN_PHP_VERSION: 8.3
CI: true
jobs:
extension-test:
name: 'Testing and linting'
uses: astehlik/typo3-extension-buildtools/.github/workflows/extension-test.yml@TYPO3_14
with:
# Ignore 108277 because it causes to many false positives with the with() method in PHPUnit tests
typo3-scan-ignore: 108277
extension-qltysh-coverage:
name: 'Qlty coverage'
uses: astehlik/typo3-extension-buildtools/.github/workflows/extension-qltysh-coverage.yml@TYPO3_14
if: github.ref == 'refs/heads/main'
secrets:
QLTY_COVERAGE_TOKEN: ${{ secrets.QLTY_COVERAGE_TOKEN }}