Skip to content

Commit

Permalink
Re-add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ewhanson committed Feb 9, 2024
1 parent d3ec7fd commit 06bf474
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Tests

on:
push:
branches:
- "**"
- "!main"
pull_request:
branches: [ "main" ]


jobs:
ci:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: composer:v2
coverage: xdebug

- name: Install Dependencies
run: composer install --no-interaction --prefer-dist --optimize-autoloader

- name: Tests
run: ./vendor/bin/pest

0 comments on commit 06bf474

Please sign in to comment.