Skip to content

Commit 343b3a8

Browse files
committed
1 parent 2f2271c commit 343b3a8

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/drupal-check.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
12+
- name: Checkout
13+
uses: actions/checkout@v1
14+
15+
- name: Info
16+
run: |
17+
pwd
18+
ls -lah
19+
php -v
20+
php -m
21+
composer -vvv -V
22+
composer global require -o --update-no-dev --no-suggest "hirak/prestissimo:^0.3"
23+
composer install -o --profile
24+
vendor/bin/drupal-check -ad -vv -n web/modules/custom web/profiles/sdd
25+
26+
# - name: Build
27+
# uses: docker://skilldlabs/php:73
28+
# with:
29+
# args: sh -c "composer install -o && vendor/bin/drupal-check -ad -vv -n web/modules/custom"
30+
31+
- name: Run a multi-line script
32+
run: |
33+
ls -la
34+
ls -lah vendor/bin

0 commit comments

Comments
 (0)