chore: prefix _internal self-verification

This commit is contained in:
Damien Retzinger
2022-06-26 13:38:07 -04:00
parent e7cf80c743
commit e7ef17a883
2 changed files with 0 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
name: Unit Test
on:
push:
branches:
- main
paths-ignore:
- "docs/**"
- README.md
pull_request:
branches:
- main
paths-ignore:
- "docs/**"
- README.md
jobs:
unit-test:
strategy:
matrix:
php_version:
- 7.4
- 8.1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./unit-test
with:
source_folder: _test/demo-package
php_version: ${{ matrix.php_version }}
composer_auth: ${{ secrets.COMPOSER_AUTH }}