Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add workflow for version 4 development #59

Merged
merged 1 commit into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml → .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Build
name: Build main

on:
push:
branches:
- "**"
- "main"
pull_request:
branches:
- "main"
Expand Down
75 changes: 75 additions & 0 deletions .github/workflows/v4.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
name: Build version 4 development

on:
pull_request:
branches:
- "v4"

jobs:
build:
runs-on: ${{ matrix.host-os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
php-versions: ["7.4", "8.0", "8.1", "8.2"]
host-os: ["ubuntu-latest", "windows-latest"]
experimental: [false]

name: PHP ${{ matrix.php-versions }} - OS ${{ matrix.host-os }}
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
extensions: sockets, intl, bz2, zip

- name: Get composer cache directory (Ubuntu)
id: composercache-ubuntu
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
if: ${{ startsWith( matrix.host-os , 'ubuntu') }}

- name: Cache dependencies (Ubuntu)
uses: actions/cache@v3
with:
path: ${{ steps.composercache-ubuntu.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
if: ${{ startsWith( matrix.host-os , 'ubuntu') }}

- name: Get composer cache directory (Windows)
id: composercache-windows
run: |
echo "dir=$(composer config cache-files-dir)" >> $env:GITHUB_OUTPUT
if: ${{ startsWith( matrix.host-os , 'windows') }}

- name: Cache dependencies (Windows)
uses: actions/cache@v3
with:
path: ${{ steps.composercache-windows.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
if: ${{ startsWith( matrix.host-os , 'windows') }}

- name: Install dependencies
run: composer install --prefer-dist --no-progress

- name: Check codestyle
run: composer check

- name: Run test suite
run: composer phpunit

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./clover.xml
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}