Skip to content

Commit 417f5a1

Browse files
committed
Update test coverage
1 parent 01ab1c2 commit 417f5a1

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/tests.yml

+11-5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,15 @@ defaults:
1111
shell: bash
1212

1313
jobs:
14+
create-project:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Create project
18+
run: |
19+
composer create-project --ignore-platform-reqs mstrelan/drupal-contrib:dev-${{ github.ref_name }}
20+
cd drupal-contrib
21+
make 11.x
22+
1423
tests:
1524
runs-on: ubuntu-latest
1625

@@ -20,13 +29,11 @@ jobs:
2029
drupal_version: ['10.3', '10.4', '10.5', '11.0', '11.1', '11.x']
2130

2231
steps:
23-
- name: Create project
24-
run: |
25-
composer create-project --ignore-platform-reqs mstrelan/drupal-contrib:dev-${{ github.ref_name }}
32+
- name: Checkout
33+
uses: actions/checkout@v3
2634

2735
- name: Initialise environment
2836
run: |
29-
cd drupal-contrib
3037
make ${{ matrix.drupal_version }}
3138
3239
- name: Setup homebrew
@@ -41,5 +48,4 @@ jobs:
4148
env:
4249
DRUPAL_VERSION: ${{ matrix.drupal_version == '11.x' && '11.2-dev' || matrix.drupal_version }}
4350
run: |
44-
cd drupal-contrib
4551
bats tests

0 commit comments

Comments
 (0)