Skip to content

Commit

Permalink
added github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ogmueller committed Mar 17, 2024
1 parent c2fa061 commit a5a9e04
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 39 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "composer" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
87 changes: 87 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
name: CI
on:
push:
paths-ignore:
- 'README.md'
- 'LICENSE'
branches: [ "main" ]
pull_request:
paths-ignore:
- 'README.md'
- 'LICENSE'
- 'example'
branches: [ "main" ]

permissions:
contents: read

jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
fail-fast: false
matrix:
php-version: [
"8.1",
"8.2",
"8.3",
# also try a future version
"8.4"
]
composer-param: [
"update --no-progress --prefer-dist --prefer-lowest",
"update --no-progress --prefer-dist"
]
name: PHP ${{ matrix.php-version }} test
steps:
- name: checkout project
uses: actions/checkout@v4
with:
# needed by scrutinizer
fetch-depth: 2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: bcmath
tools: composer:v2
# needed by PHPUnit code coverage
coverage: pcov

- name: Validate composer.json and composer.lock
run: composer validate

- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-dir)" >> $GITHUB_OUTPUT

- name: Cache composer dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

- name: Install dependencies
run: composer ${{ matrix.composer-param }}

# Run phpunit with code coverage
- name: PHPUnit Tests
run: vendor/bin/phpunit --coverage-clover=coverage.clover

# Uploading reports for analysis
- name: Upload code-coverage to scrutinizer
run: vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover

- name: Publish code coverage to Code Climate
uses: paambaati/codeclimate-action@v5
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageLocations: |
coverage.clover:clover
# vim: syntax=yaml ts=2 sw=2 et sr softtabstop=2 autoindent
39 changes: 0 additions & 39 deletions .github/workflows/php.yml

This file was deleted.

3 changes: 3 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,8 @@
},
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"test": "phpunit --display-warnings --display-notices"
}
}

0 comments on commit a5a9e04

Please sign in to comment.