remove redundant install step
This commit is contained in:
parent
c13835d2ef
commit
8bc44f6cb5
2 changed files with 0 additions and 4 deletions
3
.github/workflows/test_and_publish.yml
vendored
3
.github/workflows/test_and_publish.yml
vendored
|
@ -64,9 +64,6 @@ jobs:
|
||||||
- name: Install PHP dependencies
|
- name: Install PHP dependencies
|
||||||
run: composer update && composer install --prefer-dist --no-progress
|
run: composer update && composer install --prefer-dist --no-progress
|
||||||
|
|
||||||
- name: Install shimmie
|
|
||||||
run: php index.php
|
|
||||||
|
|
||||||
- name: Run test suite
|
- name: Run test suite
|
||||||
run: |
|
run: |
|
||||||
if [[ "${{ matrix.database }}" == "pgsql" ]]; then
|
if [[ "${{ matrix.database }}" == "pgsql" ]]; then
|
||||||
|
|
|
@ -214,7 +214,6 @@ function create_tables(Database $db)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
$db->begin_transaction();
|
|
||||||
$db->create_table("aliases", "
|
$db->create_table("aliases", "
|
||||||
oldtag VARCHAR(128) NOT NULL,
|
oldtag VARCHAR(128) NOT NULL,
|
||||||
newtag VARCHAR(128) NOT NULL,
|
newtag VARCHAR(128) NOT NULL,
|
||||||
|
|
Reference in a new issue