Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
asika32764 committed May 24, 2024
1 parent b8c16e4 commit ac96dfa
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: UnitTest

on: [push, pull_request]

jobs:
build:
strategy:
matrix:
php-versions: [ '8.0', '8.1', '8.2', '8.3' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# PHP
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
# extensions: mbstring
- name: Get composer cache directory
id: composercache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache composer dependencies
uses: actions/cache@v2
with:
path: ${{ steps.composercache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer update --prefer-dist --prefer-stable --no-progress --no-suggest --ignore-platform-reqs

- name: Run test suite
run: php vendor/bin/phpunit --configuration phpunit.ci.xml
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.*
!.gitignore
!.travis.yml
!.github

# Composer
/vendor/*
Expand Down

0 comments on commit ac96dfa

Please sign in to comment.