Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ArrayIterator committed Nov 11, 2023
1 parent c05d027 commit 8eaed35
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
- push

jobs:
coding-standards-php81:
name: "Coding Standards php8.1"
continuous-integration-php81:
name: "Continuous Integration php8.1"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@master
uses: actions/checkout@main
- name: "Install Php 8.1"
uses: shivammathur/setup-php@v2
with:
Expand All @@ -25,18 +25,18 @@ jobs:
run: php vendor/bin/phpcs --standard=phpcs.xml
- name: "Run PHP Unit Test"
run: php vendor/bin/phpunit --configuration=phpunit.xml
coding-standards-php82:
name: "Coding Standards php8.2"
continuous-integration-php82:
name: "Continuous Integration php8.2"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@master
uses: actions/checkout@main
- name: "Install Php 8.2"
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
tools: composer:v2
extensions: json, intl
#extensions: json, intl
- name: "Validate composer.json"
run: php $(which composer) validate --strict
- name: "Install dependencies with composer"
Expand All @@ -46,17 +46,17 @@ jobs:
- name: "Run PHP Unit Test"
run: php vendor/bin/phpunit --configuration=phpunit.xml
coding-standards-php83:
name: "Coding Standards php8.3"
name: "Continuous Integration php8.3"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@master
uses: actions/checkout@main
- name: "Install Php 8.3"
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
tools: composer:v2
extensions: json, intl
#extensions: json, intl
- name: "Validate composer.json"
run: php $(which composer) validate --strict
- name: "Install dependencies with composer"
Expand Down

0 comments on commit 8eaed35

Please sign in to comment.