Skip to content

Commit 3105619

Browse files
committed
Add testing
1 parent fd63b8c commit 3105619

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/testing.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Testing
2+
3+
jobs:
4+
release:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v3
8+
with:
9+
fetch-depth: 0
10+
11+
- uses: shivammathur/setup-php@v2
12+
with:
13+
php-version: '8.3'
14+
15+
- name: Setup Drupal
16+
run: composer create-project --no-install --no-interaction drupal/recommended-project:11.1.1 ~/drupal
17+
18+
- name: Configure composer project
19+
run: |
20+
cd ~/drupal
21+
composer config minimum-stability dev
22+
composer config prefer-stable true
23+
composer config repositories.0 '{"type": "path", "url": "'$GITHUB_WORKSPACE'/packages/uebertool-companion", "options": {"symlink": false}}'
24+
composer require drupal/core-dev:11.1.1
25+
composer show -a ueberbit/uebertool_companion
26+

0 commit comments

Comments
 (0)