We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f2271c commit 343b3a8Copy full SHA for 343b3a8
.github/workflows/drupal-check.yml
@@ -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
33
+ ls -la
34
+ ls -lah vendor/bin
0 commit comments