Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
crynobone committed Dec 18, 2022
1 parent b60107b commit fc7bcb1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/analyse.yml
Expand Up @@ -13,15 +13,15 @@ jobs:
os:
- "ubuntu-latest"
php:
- "8.0"
- 8.1
experimental:
- false

name: PHP${{ matrix.php }} on ${{ matrix.os }}

steps:
- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -31,7 +31,7 @@ jobs:
coverage: none

- name: Install dependencies
uses: "ramsey/composer-install@v1"
uses: "ramsey/composer-install@v2"
with:
dependency-versions: "highest"
composer-options: "--prefer-dist --no-cache"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coveralls.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
os:
- "ubuntu-latest"
php:
- "8.0"
- 8.1
experimental:
- false

Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/tests.yml
Expand Up @@ -16,31 +16,31 @@ jobs:
- "ubuntu-latest"
- "windows-latest"
php:
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "8.1"
- 7.2
- 7.3
- 7.4
- '8.0'
- 8.1
dependencies:
- "highest"
- "lowest"
experimental:
- false
include:
- os: "ubuntu-latest"
php: "8.2"
php: 8.2
dependencies: "highest"
experimental: true
- os: "windows-latest"
php: "8.2"
php: 8.2
dependencies: "highest"
experimental: true

name: PHP${{ matrix.php }} on ${{ matrix.os }} (${{ matrix.dependencies }})

steps:
- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -50,7 +50,7 @@ jobs:
coverage: none

- name: Install dependencies
uses: "ramsey/composer-install@v1"
uses: "ramsey/composer-install@v2"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "--prefer-dist --no-cache"
Expand Down

0 comments on commit fc7bcb1

Please sign in to comment.