Skip to content

Commit

Permalink
Add basic unit test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cmuench committed Nov 7, 2023
1 parent 3fbba83 commit b3f94d6
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,16 @@ permissions:

jobs:
run-unit-tests:
uses: mage-os/infrastructure/.github/workflows/unit-tests.yml@main
# TODO: Add the right Github Action here
#uses: mage-os/infrastructure/.github/workflows/unit-tests.yml@main

- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest --no-interaction --no-scripts

- name: Run unit tests
run: vendor/bin/phpunit

0 comments on commit b3f94d6

Please sign in to comment.