/
jagepard
/
Rudra-Router
Обзор
Документация
Войти
/
jagepard
/
Rudra-Router
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
2024
.github/workflows/php.yml
46 строк
1 KB
Korotkov Danila
Create php.yml
24 окт 2023, 17:50
Не верифицирован
24 окт 2023, 17:50
5a75414
Код
Авторство
О чём код?
name: PHPunit on: push: branches: [ "master" ] pull_request: branches: [ "master" ] permissions: contents: read jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Validate composer.json and composer.lock run: composer validate --strict - name: Cache Composer packages id: composer-cache uses: actions/cache@v3 with: path: vendor key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-php- - name: Install dependencies run: composer install --prefer-dist --no-progress # Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit" # Docs: https://getcomposer.org/doc/articles/scripts.md # - name: Run test suite # run: composer run-script test - name: PHPUnit (graychen) # You may pin to the exact commit or the version. # uses: Graychen/phpunit-action@026f8104f1a6b5bc646df2d495bc8b34080c3e03 uses: Graychen/phpunit-action@v1.0.0 with: # Configuration file location config: phpunit.xml