From 8bc44f6cb50834e45e89535cad61c2b831a161d9 Mon Sep 17 00:00:00 2001 From: Shish Date: Tue, 27 Oct 2020 02:17:11 +0000 Subject: [PATCH] remove redundant install step --- .github/workflows/test_and_publish.yml | 3 --- core/install.php | 1 - 2 files changed, 4 deletions(-) diff --git a/.github/workflows/test_and_publish.yml b/.github/workflows/test_and_publish.yml index 86215d05..f5bce06a 100644 --- a/.github/workflows/test_and_publish.yml +++ b/.github/workflows/test_and_publish.yml @@ -64,9 +64,6 @@ jobs: - name: Install PHP dependencies run: composer update && composer install --prefer-dist --no-progress - - name: Install shimmie - run: php index.php - - name: Run test suite run: | if [[ "${{ matrix.database }}" == "pgsql" ]]; then diff --git a/core/install.php b/core/install.php index 3fc114f5..b9cdde00 100644 --- a/core/install.php +++ b/core/install.php @@ -214,7 +214,6 @@ function create_tables(Database $db) ); } - $db->begin_transaction(); $db->create_table("aliases", " oldtag VARCHAR(128) NOT NULL, newtag VARCHAR(128) NOT NULL,