Skip to content

Commit

Permalink
Add additional github actions steps
Browse files Browse the repository at this point in the history
  • Loading branch information
tobischo committed Apr 12, 2024
1 parent 5c5861b commit 9a14bfd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ on: [push, pull_request]

jobs:
unit-tests:
- name: phpunit
uses: php-actions/phpunit@v3
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6 # or alternative dependency management
- uses: php-actions/phpunit@v3
with:
configuration: "phpunit.xml.dist"
memory_limit: "256M"

0 comments on commit 9a14bfd

Please sign in to comment.