From 15e2f89abd8152feadcf16dfcdf964870379ebad Mon Sep 17 00:00:00 2001 From: Zach Wolfenbarger Date: Tue, 20 Feb 2024 15:23:55 -0600 Subject: [PATCH] Add redis service to test workflow --- .github/workflows/python-versions.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-versions.yml b/.github/workflows/python-versions.yml index 74a3890e..c44f2f6c 100644 --- a/.github/workflows/python-versions.yml +++ b/.github/workflows/python-versions.yml @@ -9,6 +9,9 @@ on: jobs: build: runs-on: ubuntu-latest + services: + redis: + image: redis strategy: matrix: python-version: [3.8, 3.9, "3.10", "3.11"] @@ -35,6 +38,6 @@ jobs: coverage report - name: Coveralls if: ${{ matrix.python-version == 3.10 }} - env: + env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: coveralls --service=github