chore: bump version (#43) #36
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run standards & tests | |
on: | |
push: | |
branches: [ dev, production ] | |
tags: | |
- '*.*.*' | |
pull_request: | |
branches: [ dev ] | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ 8.1, 8.2 ] | |
os: [ ubuntu-20.04 ] | |
wordpress: [ '6.5', latest ] | |
include: | |
- experimental: true | |
- experimental: false | |
php: 8.1 | |
wordpress: '6.5' | |
name: Test - PHP ${{ matrix.php }} - WP ${{ matrix.wordpress }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Start required services | |
run: sudo systemctl start mysql.service | |
- name: Cache PHP dependencies | |
uses: actions/cache@v3 | |
with: | |
path: vendor | |
key: php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }} | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: phpcs, composer | |
coverage: pcov | |
- name: Install PHP dependencies | |
run: | | |
export PATH="$HOME/.composer/vendor/bin:$PATH" | |
composer install --no-interaction | |
git clone --depth=1 https://github.com/pressbooks/pressbooks.git ../pressbooks | |
cd ../pressbooks && composer install --no-dev | |
cd ../pressbooks-stats | |
- name: Run PHP CodeSniffer | |
run: composer standards | |
if: matrix.experimental == false | |
- name: Install WP tests | |
run: bash bin/install-wp-tests.sh wordpress_test root root localhost ${{ matrix.wordpress }} | |
- name: Run PHP Tests | |
run: composer test | |
if: matrix.experimental == true | |
- name: Run PHP Test and PCOV | |
run: composer test-coverage | |
if: matrix.experimental == false | |
- name: Upload Coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
if: matrix.experimental == false | |
- name: Trigger Bedrock Update | |
if: (github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/production') && matrix.experimental == false | |
uses: pressbooks/composer-autoupdate-bedrock@main | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_SNS_ARN_DEV: ${{ secrets.AWS_SNS_ARN_DEV }} | |
AWS_SNS_ARN_STAGING: ${{ secrets.AWS_SNS_ARN_STAGING }} | |
INPUT_TRIGGERED_BY: ${{ github.repository }} | |
INPUT_BRANCH: ${{ github.ref }} |