Skip to content

Commit

Permalink
chore: include 8.1 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mnavarrocarter committed Oct 26, 2023
1 parent a2e436e commit 0a7c535
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
matrix:
php-version:
- "8.0"
- "8.1"
- "8.2"
steps:
- name: Checkout
Expand Down
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ test-container80:
@-docker-compose run --rm app80 bash
@docker-compose down -v

.PHONY: test-container81
test-container81:
@-docker-compose run --rm app81 bash
@docker-compose down -v

.PHONY: test-container82
test-container82:
@-docker-compose run --rm app82 bash
Expand Down
11 changes: 11 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@ services:
- .:/app:delegated
- ~/.composer:/root/.composer:delegated
working_dir: /app
app81:
build:
context: .
args:
PHP_VERSION: '8.1'
environment:
PHP_IDE_CONFIG: 'serverName=olvlvl/attribute-collector'
volumes:
- .:/app:delegated
- ~/.composer:/root/.composer:delegated
working_dir: /app
app82:
build:
context: .
Expand Down

0 comments on commit 0a7c535

Please sign in to comment.