Skip to content

Commit

Permalink
Add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alaugks committed Nov 2, 2024
1 parent 9285d72 commit bd50a43
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "Tests"
run-name: Tests [${{ github.ref_name }}]
on:
push:
branches:
- main
- dev
- property-normalizer
workflow_dispatch:
jobs:
tests:
name: Tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

- name: "Run Tests"
run: |
docker compose up -d
docker exec article_symfony_serializer composer install
docker exec article_symfony_serializer bin/phpunit

0 comments on commit bd50a43

Please sign in to comment.