Skip to content

Commit be76e08

Browse files
committed
run ux.symfony.com tests in ci
1 parent 8beae13 commit be76e08

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/ux.symfony.com.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: ux.symfony.com
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
tests:
9+
runs-on: ubuntu-latest
10+
defaults:
11+
run:
12+
shell: bash
13+
working-directory: ux.symfony.com
14+
15+
steps:
16+
- uses: actions/checkout@v3
17+
18+
- uses: shivammathur/setup-php@v2
19+
with:
20+
php-version: 8.1
21+
22+
- name: Install dependencies
23+
uses: ramsey/composer-install@v2
24+
with:
25+
working-directory: ux.symfony.com
26+
27+
- name: Tests
28+
run: vendor/bin/phpunit

0 commit comments

Comments
 (0)