feat(db): fixed issue with include and marshalling #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ ubuntu-latest, windows-latest ] | |
php: [ '8.3' ] | |
name: Haku Test with PHP ${{ matrix.php }} on ${{ matrix.operating-system }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: nanasess/setup-php@v4 | |
with: | |
php-version: ${{ matrix.php }} | |
- run: php haku init --test | |
- run: php haku test |