Skip to content

chore(deps): bump redis from 5.2.1 to 6.2.0 #304

chore(deps): bump redis from 5.2.1 to 6.2.0

chore(deps): bump redis from 5.2.1 to 6.2.0 #304

Workflow file for this run

name: test
on: push
jobs:
test:
runs-on: galileo
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry==${{vars.POETRY_V2_VERSION}}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: "poetry"
cache-dependency-path: "pyproject.toml"
- name: Install Dependencies
run: |
pipx install invoke
inv install
# We run the `mypy` check here since it requires all of the packages to be installed.
# Doing that in the pre-commit step would be duplicative and spend more time in CI.
- name: Validate Types
run: inv type-check
- name: Run Tets
run: inv test
- name: Upload Test Coverage Reports
uses: codecov/codecov-action@v5.4.2
with:
token: ${{ secrets.CODECOV_TOKEN }}