Skip to content

Commit

Permalink
install dependencies using php8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sshilko committed Jan 2, 2024
1 parent 6edb69f commit cb2a1f2
Show file tree
Hide file tree
Showing 5 changed files with 135 additions and 202 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/phpunit80.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
uses: actions/cache@v3
with:
path: /tmp/docker-save
key: ${{ runner.os }}-docker-php-build80-save-${{ hashFiles('/build/Dockerfile.php.common', '/build/Dockerfile.php80') }}
key: ${{ runner.os }}-docker-php-build80-save-${{ hashFiles('build/Dockerfile.php.common', 'build/Dockerfile.php80') }}
- name: Load cached Docker image
run: docker load -i /tmp/docker-save/snapshot.tar && docker tag app/php-image-cache app/php80

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpunit81.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions/cache@v3
with:
path: /tmp/docker-save
key: ${{ runner.os }}-docker-php-build81-save-${{ hashFiles('/build/Dockerfile.php.common', '/build/Dockerfile.php81') }}
key: ${{ runner.os }}-docker-php-build81-save-${{ hashFiles('build/Dockerfile.php.common', 'build/Dockerfile.php81') }}

- name: Load cached Docker image
run: docker load -i /tmp/docker-save/snapshot.tar || true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpunit82.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions/cache@v3
with:
path: /tmp/docker-save
key: ${{ runner.os }}-docker-php82-build-save-${{ hashFiles('/build/Dockerfile.php.common', '/build/Dockerfile.php82') }}
key: ${{ runner.os }}-docker-php82-build-save-${{ hashFiles('build/Dockerfile.php.common', 'build/Dockerfile.php82') }}

- name: Load cached Docker image
run: docker load -i /tmp/docker-save/snapshot.tar || true
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTING
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ docker-compose exec app.php81 composer app-pre-commit
docker-compose exec app.php81 composer app-quality
git commit -m "new-feature-message"

docker-compose exec -it app.php80 bash

##### Run [PHPUnit](https://phpunit.de) test suite

Expand Down
Loading

0 comments on commit cb2a1f2

Please sign in to comment.