From 5c5399bcaa1d00ca551d358e27db0ca68a9b655f Mon Sep 17 00:00:00 2001 From: Andy Casey Date: Fri, 25 Oct 2024 12:41:31 -0600 Subject: [PATCH] foo: --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e936d7..a1731f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,12 +31,16 @@ jobs: - name: "Install the project" run: uv sync --all-extras --dev + - name: "Run tests" env: ASTRA_DATABASE_URL: ':memory:' run: | uv run pytest tests + - name: "Install Coveralls" + run: uv pip install coveralls + - name: Coveralls env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}