Skip to content

Commit

Permalink
v2.x: chore(ci): Update CI workflow (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
meyfa authored Sep 14, 2023
1 parent d440030 commit 8b24466
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.2', '7.3', '7.4', '8']
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup PHP ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v2
Expand All @@ -25,7 +25,7 @@ jobs:

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 - 2022 Fabian Meyer
Copyright (c) 2018 - 2023 Fabian Meyer

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ composer require --dev meyfa/phpunit-assert-gd
```

| AssertGD version | Supported PHP version | Supported PHPUnit version |
| :--------------- | :-------------------- | :------------------------ |
| :--------------- |:----------------------| :------------------------ |
| 4.* | >= 8.1 | 10.1 |
| 3.* | >= 7.3 | 9 |
| 2.* | >= 7.2 | 8 |
| 1.* | >= 5.3.3 | 4.8.36 - 6.5.0 |
| 1.* | 5.3.3 - 8.0 | 4.8.36 - 6.5.0 |

## Examples

Expand Down

0 comments on commit 8b24466

Please sign in to comment.