1
0
Fork 0
mirror of https://github.com/archtechx/money.git synced 2025-12-12 03:14:03 +00:00

cleanup: docker-compose not required

This commit is contained in:
Gaurav 2022-03-09 09:31:00 +05:30
parent c7ccaa42c5
commit f74cade383
4 changed files with 0 additions and 17 deletions

1
.gitattributes vendored
View file

@ -2,7 +2,6 @@
/.gitattributes export-ignore
/.gitignore export-ignore
/docker-compose.yml export-ignore
/tests export-ignore
/phpstan.neon export-ignore

View file

@ -21,8 +21,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Start docker containers
run: docker-compose up -d
- name: Install composer dependencies
run: composer require "illuminate/support:^${{ matrix.laravel }}.0"
- name: Run tests

2
check
View file

@ -43,8 +43,6 @@ else
offer_run './vendor/bin/phpstan analyse'
fi
(MYSQL_PORT=3307 docker-compose up -d > /dev/null 2>/dev/null) || true
if (./vendor/bin/pest > /dev/null 2>/dev/null); then
echo '✅ PEST OK'
else

View file

@ -1,12 +0,0 @@
version: '3'
services:
mysql:
image: mysql:5.7
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: main
MYSQL_USER: user
MYSQL_PASSWORD: password
MYSQL_TCP_PORT: ${MYSQL_PORT}
ports:
- "${MYSQL_PORT}:${MYSQL_PORT}"