Skip to content

feat: add datetime casts #530

feat: add datetime casts

feat: add datetime casts #530

name: Continuous Integration
on:
- pull_request
- push
jobs:
testing:
name: Tests
runs-on: ubuntu-20.04
strategy:
matrix:
php:
- "8.0"
- "8.1"
- "8.2"
mongo:
- "4.0"
- "4.2"
- "4.4"
- "5.0"
services:
mongodb:
image: mongo:${{ matrix.mongo }}
ports:
- "27017:27017"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: PHP setup
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mongodb-mongodb/[email protected]
- name: Composer
uses: ramsey/composer-install@v2
- name: Running tests
run: vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover=./coverage/clover.xml
- name: Report coverage
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: ./coverage/clover.xml