Skip to content

Commit

Permalink
well, this is gonna be hit'n'miss, I have no idea what I'm doing
Browse files Browse the repository at this point in the history
  • Loading branch information
mindplay-dk committed Sep 27, 2023
1 parent 65d8b53 commit 376db71
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI

on: [push, pull_request]

permissions:
contents: read

jobs:
CI:
runs-on: ubuntu-latest
strategy:
matrix:
php:
- '8.0'
- '8.1'
- '8.2'
coverage:
- none
include:
- php: '8.0'
- php: '8.1'
- php: '8.2'
coverage: xdebug
steps:
- uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php }}
coverage: ${{ matrix.coverage }}
- uses: actions/checkout@v3
- run: composer install --no-progress --no-ansi --no-interaction --dev --prefer-dist
- run: php test/test.php

0 comments on commit 376db71

Please sign in to comment.