We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f2271c commit e0ab9a9Copy full SHA for e0ab9a9
.github/workflows/drupal-check.yml
@@ -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
34
+ ls -la
35
+ ls -lah vendor/bin
0 commit comments