Skip to content

Commit

Permalink
refactor draw classes and README
Browse files Browse the repository at this point in the history
  • Loading branch information
abmmhasan committed Dec 6, 2023
1 parent 83d1168 commit b1e5680
Show file tree
Hide file tree
Showing 9 changed files with 316 additions and 417 deletions.
38 changes: 0 additions & 38 deletions .github/workflows/ci.yml

This file was deleted.

60 changes: 0 additions & 60 deletions .github/workflows/codacy.yml

This file was deleted.

38 changes: 38 additions & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: "Stability Test"

on:
push:
branches: [ '*' ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ ubuntu-latest ]
php-versions: [ '8.0', '8.1', '8.2', '8.3' ]
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: composer:v2
coverage: xdebug

- name: Check PHP Version
run: php -v

- name: Validate Composer
run: composer validate --strict

- name: Install dependencies
run: composer install --no-interaction --prefer-dist --optimize-autoloader

- name: Package Audit
run: composer audit
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
.idea
/vendor
/vendor
composer.lock
example.php
Loading

0 comments on commit b1e5680

Please sign in to comment.