From e21153388299680e5cb8b6b146e649b572747010 Mon Sep 17 00:00:00 2001 From: Adrienne Stilp Date: Mon, 13 Nov 2023 15:55:23 -0800 Subject: [PATCH] Remove MariaDB 10.3 from CI Since we're not running 10.3 anymore, we don't need to test against it in CI. --- .github/workflows/ci.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 437d5284..9ebd5351 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: # ahead of planned upgrades we can add versions as # needed python-version: [3.8] - mariadb-version: ["10.3", "10.4"] + mariadb-version: ["10.4"] services: mysql: @@ -88,16 +88,16 @@ jobs: env: # We can set this to an empty string, since we'll never make an API call. ANVIL_API_SERVICE_ACCOUNT_FILE: foo - + - name: Upload coverage data uses: actions/upload-artifact@v3 with: name: coverage-data path: .coverage.* - + pytest-sqlite: runs-on: ubuntu-latest - + steps: - name: Checkout Code Repository uses: actions/checkout@v3.1.0 @@ -121,13 +121,13 @@ jobs: env: # We can set this to an empty string, since we'll never make an API call. ANVIL_API_SERVICE_ACCOUNT_FILE: foo - + - name: Upload coverage data uses: actions/upload-artifact@v3 with: name: coverage-data path: .coverage.* - + coverage: needs: - pytest-mariadb @@ -159,4 +159,3 @@ jobs: uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} -