From bf65a1a0fdaf25999ff6a5cc771363b810a25326 Mon Sep 17 00:00:00 2001 From: Rafael Espinoza Date: Sat, 29 Jun 2024 12:03:45 -0700 Subject: [PATCH] fix workflow files --- .github/workflows/build-cassandra.yml | 6 ++++-- .github/workflows/build-mysql.yml | 9 ++++++--- .github/workflows/build-postgres.yml | 6 ++++-- .github/workflows/build-sqlite3.yml | 3 ++- .github/workflows/build-sqlserver.yml | 3 ++- 5 files changed, 18 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-cassandra.yml b/.github/workflows/build-cassandra.yml index 91aa18c..4dfe90b 100644 --- a/.github/workflows/build-cassandra.yml +++ b/.github/workflows/build-cassandra.yml @@ -7,7 +7,8 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v4 - fetch-depth: 0 + with: + fetch-depth: 0 - name: Build environment and run tests run: just -f ci.Makefile ci-cassandra3-up - name: Upload code coverage @@ -25,7 +26,8 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v4 - fetch-depth: 0 + with: + fetch-depth: 0 - name: Build environment and run tests run: just -f ci.Makefile ci-cassandra4-up - name: Upload code coverage diff --git a/.github/workflows/build-mysql.yml b/.github/workflows/build-mysql.yml index a5db806..dd34dfe 100644 --- a/.github/workflows/build-mysql.yml +++ b/.github/workflows/build-mysql.yml @@ -7,7 +7,8 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v4 - fetch-depth: 0 + with: + fetch-depth: 0 - name: Build environment and run tests run: just -f ci.Makefile ci-mariadb-up - name: Upload code coverage @@ -25,7 +26,8 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v4 - fetch-depth: 0 + with: + fetch-depth: 0 - name: Build environment and run tests run: just -f ci.Makefile ci-mysql57-up - name: Upload code coverage @@ -43,7 +45,8 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v4 - fetch-depth: 0 + with: + fetch-depth: 0 - name: Build environment and run tests run: just -f ci.Makefile ci-mysql8-up - name: Upload code coverage diff --git a/.github/workflows/build-postgres.yml b/.github/workflows/build-postgres.yml index d1f218d..8a9c523 100644 --- a/.github/workflows/build-postgres.yml +++ b/.github/workflows/build-postgres.yml @@ -7,7 +7,8 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v4 - fetch-depth: 0 + with: + fetch-depth: 0 - name: Build environment and run tests run: just -f ci.Makefile ci-postgres14-up - name: Upload code coverage @@ -25,7 +26,8 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v4 - fetch-depth: 0 + with: + fetch-depth: 0 - name: Build environment and run tests run: just -f ci.Makefile ci-postgres15-up - name: Upload code coverage diff --git a/.github/workflows/build-sqlite3.yml b/.github/workflows/build-sqlite3.yml index 5cff98c..a6ed585 100644 --- a/.github/workflows/build-sqlite3.yml +++ b/.github/workflows/build-sqlite3.yml @@ -6,7 +6,8 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v4 - fetch-depth: 0 + with: + fetch-depth: 0 - name: Build environment and run tests run: just -f ci.Makefile ci-sqlite3-up - name: Upload code coverage diff --git a/.github/workflows/build-sqlserver.yml b/.github/workflows/build-sqlserver.yml index 4fc2eb9..fb395a9 100644 --- a/.github/workflows/build-sqlserver.yml +++ b/.github/workflows/build-sqlserver.yml @@ -6,7 +6,8 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v4 - fetch-depth: 0 + with: + fetch-depth: 0 - name: Build environment and run tests run: just -f ci.Makefile ci-sqlserver-up - name: Upload code coverage