Skip to content

Update workflows

Update workflows #68

Workflow file for this run

name: Tests

Check failure on line 1 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

(Line: 17, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual 'actions/checkout', (Line: 20, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual 'shivammathur/setup-php', (Line: 31, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual 'actions/cache'
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.2]
include:
- php: 8.2
testbench: 9.0
phpunit: 11.0
steps:
- name: Checkout code
uses: actions/checkout
- name: Install php and composer
uses: shivammathur/setup-php
with:
php-version: ${{ matrix.php }}
coverage: none
tools: composer:v2
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Restore composer cache
uses: actions/cache
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer require --no-interaction orchestra/testbench:^${{ matrix.testbench }} phpunit/phpunit:^${{ matrix.phpunit }}
- name: Run tests
run: make test