Skip to content

Commit e0ab9a9

Browse files
committed
1 parent 2f2271c commit e0ab9a9

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/workflows/drupal-check.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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+
env
19+
ls -lah
20+
php -v
21+
php -m
22+
composer -vvv -V
23+
composer global require -o --update-no-dev --no-suggest "hirak/prestissimo:^0.3"
24+
composer install -o --profile
25+
vendor/bin/drupal-check -ad -vv -n web/modules/custom web/profiles/sdd
26+
27+
# - name: Build
28+
# uses: docker://skilldlabs/php:73
29+
# with:
30+
# args: sh -c "composer install -o && vendor/bin/drupal-check -ad -vv -n web/modules/custom"
31+
32+
- name: Run a multi-line script
33+
run: |
34+
ls -la
35+
ls -lah vendor/bin

0 commit comments

Comments
 (0)