Skip to content

Commit

Permalink
Run tests with 8.0 on local, with 8.x on GHA and drop 7.3 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
back-2-95 committed Dec 2, 2021
1 parent 5a40d9e commit 6cbb330
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['7.3', '7.4', '8.0']
php-versions: ['7.4', '8.0', '8.1']

steps:

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
test: vendor
@echo "Run composer test (all tests)"
@docker run --rm -it --volume $$PWD:/app druidfi/drupal:php-7.4 composer test
@docker run --rm -it --volume $$PWD:/app druidfi/drupal:php-8.0 composer test

test-%: vendor
@echo "Run composer test-$*"
@docker run --rm -it --volume $$PWD:/app druidfi/drupal:php-7.4 composer test-$*
@docker run --rm -it --volume $$PWD:/app druidfi/drupal:php-8.0 composer test-$*

vendor:
composer install

0 comments on commit 6cbb330

Please sign in to comment.