Allow types Date, Time and Timestamp to be created from string values #13
Workflow file for this run
This file contains hidden or 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
name: CI | |
on: [push, pull_request] | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: php-actions/composer@v6 | |
- name: Lint | |
run: composer run lint | |
- name: Phpstan | |
run: composer run phpstan | |
- name: Psalm | |
run: composer run psalm | |
- name: PHPUnit tests | |
run: composer run phpunit |