Skip to content

Commit

Permalink
Merge pull request #7 from rutgerrademaker/feature/enable-github-actions
Browse files Browse the repository at this point in the history
Fix github actions
  • Loading branch information
leonhelmus committed Aug 16, 2022
2 parents c34ab8a + 99cb3ce commit b4c10f5
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 14 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/testing-suite.sh

This file was deleted.

30 changes: 19 additions & 11 deletions .github/workflows/testing-suite.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
name: Testing Suite
on: [push]
jobs:
PHP-8-1:
runs-on: srcoder/development-php:php81-fpm
PHP:
strategy:
matrix:
image: [
'srcoder/development-php:php74-fpm',
'srcoder/development-php:php80-fpm',
'srcoder/development-php:php81-fpm'
]
runs-on: ubuntu-latest
container:
image: ${{ matrix.image }}
steps:
- run: ./testing-suite.sh
PHP-8-0:
runs-on: srcoder/development-php:php80-fpm
steps:
- run: ./testing-suite.sh
PHP-7-4:
runs-on: srcoder/development-php:php74-fpm
steps:
- run: ./testing-suite.sh
- name: Checkout
uses: actions/checkout@v2
- name: Testing Suite
run: |
composer2 install --dev --prefer-dist --no-scripts --no-progress --optimize-autoloader --no-interaction -vvv
composer2 show
composer2 exec -v grumphp run
shell: bash
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 2.13.1 - 2022-08-03
### Fixed
- Github actions are now actually executed.

## 2.13 - 2022-08-02
### Changed
- Dependency `phpro/grumphp` now we prefer `phpro/grumphp-shim` which is a `phar`
Expand Down

0 comments on commit b4c10f5

Please sign in to comment.