Bump guzzlehttp/guzzle from 7.9.1 to 7.9.2 #161
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: phpunit | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# https://github.com/marketplace/actions/setup-php-action#tada-php-support | |
php-versions: | |
- '7.3' | |
- '7.4' | |
- '8.0' | |
- '8.1' | |
- '8.2' | |
steps: | |
- name: Install s3cmd | |
run: | | |
sudo apt-get install s3cmd | |
s3cmd --version | |
- name: Set up the s3 bucket for testing | |
env: | |
S3_BUCKET: test.macbre.net | |
S3_REGION: eu-west-1 | |
run: | | |
shopt -s expand_aliases # https://git.luolix.topmunity/t/create-and-use-an-alias-inside-github-action/147616/3 | |
alias s3='s3cmd --access_key=${{ secrets.S3_ACCESS_KEY }} --secret_key=${{ secrets.S3_SECRET_KEY }}' | |
set -x | |
echo 'Hi!' | s3 put --acl-public - s3://${S3_BUCKET}/README | |
echo 'I am a private file' | s3 put --acl-private - s3://${S3_BUCKET}/.private | |
s3 ls s3://${S3_BUCKET}/ | |
curl -si https://s3-${S3_REGION}.amazonaws.com/${S3_BUCKET}/README | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
- name: Get composer cache directory | |
id: composer-cache-directory | |
run: | | |
composer config cache-dir | |
echo "::set-output name=dir::$(composer config cache-dir)" | |
- name: composer cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache-directory.outputs.dir }} | |
key: php-${{ matrix.php-versions }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
php-${{ matrix.php-versions }}-composer | |
- name: Compose setup | |
run: | | |
composer validate | |
composer check-platform-reqs | |
# if a package requires php: ^7, then the option --ignore-platform-req=php+ would allow installing on PHP8 | |
composer install --no-interaction --ignore-platform-req=php+ | |
- name: Archive the project | |
run: | | |
set -x | |
composer archive --file archive | |
tar -tvf archive.tar | |
- name: Test the code | |
env: | |
S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }} | |
S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }} | |
S3_BUCKET: test.macbre.net | |
S3_REGION: eu-west-1 | |
run: | | |
composer run coverage | |
- name: Upload coverage results to Coveralls | |
if: matrix.php-versions == '8.0' | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
composer global require php-coveralls/php-coveralls | |
php-coveralls --coverage_clover=.coverage.xml --json_path=/tmp/coverage.json -v |