Skip to content

Commit 03f364a

Browse files
committed
fix step order
1 parent fa47f91 commit 03f364a

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/tests.yaml

+9-7
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
php: [7.0, 5.6]
15-
db: [sqlite, mysql, postgres]
14+
php: [7.0]
15+
db: [sqlite]
16+
# php: [7.0, 5.6]
17+
# db: [sqlite, mysql, postgres]
1618

1719
env:
1820
PLUGIN: Wiki
@@ -27,17 +29,17 @@ jobs:
2729
with:
2830
php-version: ${{ matrix.php }}
2931

30-
- name: Install Composer dependencies
31-
run: composer install
32-
3332
- name: Clone Kanboard repository
3433
run: git clone --depth 1 $KANBOARD_REPO
3534

3635
- name: Create symbolic link
3736
run: ln -s ${{ github.workspace }} kanboard/plugins/$PLUGIN
3837

39-
- name: Configure PHP environment
40-
run: phpenv config-add tests/php.ini
38+
- name: Install Composer dependencies
39+
run: |
40+
cd kanboard
41+
phpenv config-add tests/php.ini
42+
composer install
4143
4244
- name: List plugin directory
4345
run: ls -la plugins/

0 commit comments

Comments
 (0)